[求助]用HyperLinkColumn传参数中的错误
shop.aspx中的前台代码
<asp:HyperLinkField DataTextField="lei" NavigateUrl="~/pet.aspx" DataNavigateUrlFormatString="pet.aspx?id={0}" />
我想连接到pet.aspx上 为什么出错连不上 打不开pet.aspx
shop.aspx后台需要代码吗?
pet.aspx 中的代码
protected void Page_Load(object sender, EventArgs e)
{
if (!this.IsPostBack)
{
string petid = Request.QueryString["id"].ToString();
SqlConnection con = new SqlConnection("server=qiao;database=ado;uid=sa;pwd=123");
con.Open();
SqlCommand cmd = new SqlCommand("select xing from pet where petid='" +petid+ "'", con);
this.Label1.Text = Convert.ToString(cmd.ExecuteScalar());
}