C#.net,Datalist中加了Linkbutton的控件,连接数据库得Id的值,点机这控件如何将这它的值传到另一页面。
C#.net,Datalist中加了Linkbutton的控件,连接数据库得Id的值,点机这控件如何将这它的值传到另一页面。我是用Datalist只接连接到数据库,并没有...
C#.net,Datalist中加了Linkbutton的控件,连接数据库得Id的值,点机这控件如何将这它的值传到另一页面。
我是用Datalist只接连接到数据库,并没有打代码。
<asp:DataList ID="DataList1" runat="server" DataKeyField="Id" DataSourceID="AccessDataSource1">
<ItemTemplate>
<table style="width: 100%; border-bottom: white thin dashed; height: 100%">
<tr>
<td style="width: 100px; height: 27px">
项目简称:</td>
<td style="width: 100px; height: 27px">
<asp:LinkButton ID="LinkButton1" runat="server"
Style="font-weight: bolder; color: yellow; text-decoration: none" Text='<%# Eval("Xmu") %>'
Width="100px"></asp:LinkButton></td>
</table>
</ItemTemplate> 展开
我是用Datalist只接连接到数据库,并没有打代码。
<asp:DataList ID="DataList1" runat="server" DataKeyField="Id" DataSourceID="AccessDataSource1">
<ItemTemplate>
<table style="width: 100%; border-bottom: white thin dashed; height: 100%">
<tr>
<td style="width: 100px; height: 27px">
项目简称:</td>
<td style="width: 100px; height: 27px">
<asp:LinkButton ID="LinkButton1" runat="server"
Style="font-weight: bolder; color: yellow; text-decoration: none" Text='<%# Eval("Xmu") %>'
Width="100px"></asp:LinkButton></td>
</table>
</ItemTemplate> 展开
展开全部
<a href="XXXX.aspx"><asp:LinkButton ID="LinkButton1" runat="server"
Style="font-weight: bolder; color: yellow; text-decoration: none" Text='<%# Eval("Xmu") %>'
Width="100px"></asp:LinkButton></a>
是不是这个意思?
呵呵
Style="font-weight: bolder; color: yellow; text-decoration: none" Text='<%# Eval("Xmu") %>'
Width="100px"></asp:LinkButton></a>
是不是这个意思?
呵呵
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你可以像上楼说的用a
如果你一定要用LinkButton,你可以用js写
不过我建议你用a来写,方便
<span style=" cursor :hand " > <a onclick ="window.open('XXXX.aspx?id=<%#Eval('字段名')%>')" ;>页面</a></span>
如果你一定要用LinkButton,你可以用js写
不过我建议你用a来写,方便
<span style=" cursor :hand " > <a onclick ="window.open('XXXX.aspx?id=<%#Eval('字段名')%>')" ;>页面</a></span>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<td style="width: 100px; height: 27px">
<asp:LinkButton ID="LinkButton1" runat="server" Style="font-weight: bolder; color: yellow; text-decoration: none" Text='<%# Eval("Xmu") %>' PostBackUrl="跳转的页面.aspx" Width="100px"></asp:LinkButton></td>
添加postbackUrl属性就可以叻!
<asp:LinkButton ID="LinkButton1" runat="server" Style="font-weight: bolder; color: yellow; text-decoration: none" Text='<%# Eval("Xmu") %>' PostBackUrl="跳转的页面.aspx" Width="100px"></asp:LinkButton></td>
添加postbackUrl属性就可以叻!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询