打印

[NET精华教程] .net教程:asp.net开发新手常见问题备忘录

.net教程:asp.net开发新手常见问题备忘录

1、1. 打开新的窗口并传送参数 2、6.表格超连接列传递参数 3、12.panel 横向滚动,纵向自动扩展 4、17.数字格式化 5、22.读取datagrid控件textbox值
一位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.删除表格记录警告
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;
}
}
5.点击表格行链接另一页
private void grdcustomer_itemdatabound
(object sender, system.web.ui.webcontrols.datagriditemeventargs e)
{
//点击表格打开
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 + "'");
}
双击表格打开新一页
if(e.item.itemtype == listitemtype.item ||
e.item.itemtype == listitemtype.alternatingitem)
{
string orderitemid =e.item.cells[1].text;
...
e.item.attributes.add("ondblclick",
"open('../shippedgrid.aspx?id=" + orderitemid + "')");
}
★特别注意:【?id=】 处不能为 【?id =】



共5页: 上一页 1 [2] [3] [4] [5] 下一页

TOP

返回顶部
AYBlue

Processed in 0.064427 second(s), 7 queries.

当前时区 GMT+8, 现在时间是 2009-1-8 14:25 京ICP备06054220号

清除 Cookies - 联系我们 - 163K.com - Archiver - WAP