asp.net中table控件动态添加超链接
在Default.aspx中添加table控件;<asp:TableID="tbl"runat="server"Height="6px"Width="19px">在Def...
在Default.aspx中添加table控件;
<asp:Table ID="tbl" runat="server" Height="6px" Width="19px">
在Default2.aspx中添加grieview控件:
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
两个页面的.cs代码如图:
为什么不能实现点击第一个页面的内容时连接到与第二个页面的内容与第一个页面内容相对应呢?比如我在第一个页面放的是新闻标题,点击标题超链接,链接到第二个页面的相应的新闻内容;
错在哪
???
第二个页面的代码如下:
string sql = "select url from wangzhan where name='"+Request.QueryString["name"].ToString()+"'";
SqlConnection cn = new SqlConnection("server=localhost;database=examonline;uid=sa;pwd=''");
cn.Open();
SqlCommand cmd = new SqlCommand(sql, cn);
DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(ds);
this.GridView1.DataSource = ds;
this.GridView1.DataBind(); 展开
<asp:Table ID="tbl" runat="server" Height="6px" Width="19px">
在Default2.aspx中添加grieview控件:
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
两个页面的.cs代码如图:
为什么不能实现点击第一个页面的内容时连接到与第二个页面的内容与第一个页面内容相对应呢?比如我在第一个页面放的是新闻标题,点击标题超链接,链接到第二个页面的相应的新闻内容;
错在哪
???
第二个页面的代码如下:
string sql = "select url from wangzhan where name='"+Request.QueryString["name"].ToString()+"'";
SqlConnection cn = new SqlConnection("server=localhost;database=examonline;uid=sa;pwd=''");
cn.Open();
SqlCommand cmd = new SqlCommand(sql, cn);
DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(ds);
this.GridView1.DataSource = ds;
this.GridView1.DataBind(); 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询