.NET常用功能及代码的总结与收藏
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-07-03
1.打开新的窗口并传送参数: 传送参数: response.write("<script>window.open(''*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"'')</script>")接收参数: string a = Request.QueryString("id");string b = Request.QueryString("id1"); 2.为按钮添加对话框 传送参数: response.write("<script>window.open(''*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"'')</script>")接收参数: string a = Request.QueryString("id");string b = Request.QueryString("id1"); 为按钮添加对话框 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: TableCell myTableCell; myTableCell = e.Item.Cells[14]; LinkButton myDeleteButton ; myDeleteButton = (LinkButton)myTableCell.Controls[0]; myDeleteButton.Attributes.Add("onclick","return confirm(''您是否确定要删除这条信息'');"); break; default: break; } }
{ //点击表格打开 if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) e.Item.Attributes.Add("onclick","window.open(''Default.aspx?id=" + e.Item.Cells[0].Text + "'');"); } 双击表格连接到另一页 在itemDataBind事件中 if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem){ string OrderItemID =e.item.cells[1].Text; ... e.item.Attributes.Add("ondblclick", "location.href=''../ShippedGrid.aspx?id=" + OrderItemID + "''"); } |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于.NET常用功能及代码的总结与收藏的所有评论