问题描述
怎么用asp.net把数据绑定到表格里面去啊?
解决方案
解决方案二:
tableid="td1"runat="server"style="width:312px;height:74px"><tr><tdstyle="height:21px">a1</td><tdstyle="height:21px">a2</td><tdstyle="width:100px;height:21px">a3</td></tr><tr><td>b1</td><td>b2</td><tdstyle="width:100px">b3</td></tr><tr><td>c1</td><td>c2</td><tdstyle="width:100px">c3</td></tr></table>就是把这个值给添加到表格里面aspx.csXmlDocumentxmldoc=newXmlDocument();xmldoc.Load("http://bestrip.vicp.cc:352/ib_tranx_req.asp?uid=SF000&sessionid=d34d00465af4252bf1e6901cc57ec042&termid=&cmd=av&disp_special=1&disp_share=1&verify=0&start_city=SHA&arrive_city=PEK&date=2008-10-31");XmlNodexmlnode1=xmldoc.SelectSingleNode("air_info");foreach(XmlElementxmlnodeinxmlnode1.ChildNodes){if(xmlnode.GetAttribute("line_number").Substring(0,1)=="*"){//为空}else{Response.Write("line_number="+xmlnode.GetAttribute("line_number"));Response.Write("<br>");foreach(XmlElementxmlele1inxmlnode.ChildNodes){if(xmlele1.GetAttribute("d")=="*未知"){}else{Response.Write("d="+xmlele1.GetAttribute("d"));Response.Write("<br>");}}}}
解决方案三:
看看ado.net基础教程
解决方案四:
请高手赐教!!更热爱学习
解决方案五:
让table的每列的text属性绑定对应的值,应该就可以了
解决方案六:
使用Repeater控件。<tableid="td1"runat="server"style="width:312px;height:74px">//headertemp//<ItemTemplate><tr><tdstyle="height:21px">a1//a1--><%#Eval("ColumnName")%></td><tdstyle="height:21px">a2</td><tdstyle="width:100px;height:21px">a3</td></tr>//</ItemTemplate></table>//footertemp然后把XML数据存成DataTable绑定,应该可以了。
解决方案七:
ls的是个办法