ASP.NET程序中常用的三十三种代码_NET教程
资源名称: 程序中常用的三十三种代码 内容简介: 打开新的窗口并传送参数: 传送参数: <script> < script> 接收参数: 为按钮添加对话框 确认 删除表格选定记录 删除表格记录警告 资源截图:
应用介绍
资源名称:ASP.NET程序中常用的三十三种代码
内容简介:
-
打开新的窗口并传送参数:
传送参数:
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.删除表格记录警告
private void DataGrid_ItemCreated(Object sender,DataGridItemEventArgs e)
{
switch(e.Item.ItemType)
{
case ListItemType.Item :
case ListItemType.AlternatingItem :
case ListItemType.EditItem:
资源截图:
©软件著作权归作者所有。本站所有软件均来源于网络,仅供学习使用,请支持正版!
转载请注明出处: 789收藏导航网 » ASP.NET程序中常用的三十三种代码_NET教程
发表评论 取消回复