ASP.Net开发新手常见问题备忘录

2009-05-12 22:34:48来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

一位ASP.net初学者学习过程中整理的备忘录,包括“打开新的窗口并传送参数,为按钮添加对话框,删除表格选定记录,删除表格记录警告”等等常见问题的解决方法。

1. 打开新的窗口并传送参数:

传送参数:

以下为引用的内容:

response.write("〈script>window.open

('*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"')〈/script>")

接收参数:

以下为引用的内容:

string a = Request.QueryString("id");

string b = Request.QueryString("id1");

2.为按钮添加对话框

以下为引用的内容:

Button1.Attributes.Add("onclick","return confirm('确认?')");

button.attributes.add("onclick","if(confirm('are you sure...?'))

{return true;}else{return false;}")

3.删除表格选定记录

以下为引用的内容:

int intEmpID = (int)MyDataGrid.DataKeys[e.Item.ItemIndex];

string deleteCmd = "DELETE from Employee where emp_id = " + intEmpID.ToString()

4.删除表格记录警告

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:ASp.Net自定义验证码控件

下一篇:.NET 2.0中Hashtable快速查找的方法