62,254
社区成员
发帖
与我相关
我的任务
分享
protected void LinkAuto_Click(object sender, EventArgs e)
{
string str = System.Configuration.ConfigurationManager.AppSettings["strconn"];
SqlConnection conn = new SqlConnection(str);
conn.Open();
string DelId = this.GrdAds.DataKeys[e.RowIndex][0].ToString();
Response.Write(" <script>window.open('AutoJs.aspx?i='+DelId,'newwin','width=200,height=200'); </script>");
}
帮顶