欢迎光临
我们一直在努力

ASP.NET程序中常用代码汇总(一)-.NET教程,Asp.Net开发

建站超值云服务器,限时71元/月

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(
ondblclicklocation.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(
ondblclickopen(’../shippedgrid.aspx?id= + orderitemid + ’));
}

  ★特别注意:【
?id=】 处不能为 【?id =

6.表格超连接列传递参数

<asp:hyperlinkcolumn target=”_blank” headertext=”id号” datatextfield=”id” navigateurl=”aaa.aspx?id=’
 <%# databinder.eval(container.dataitem, “数据字段1”)%>’ & name=’<%# databinder.eval(container.dataitem, “数据字段2”)%>’ />

7.表格点击改变颜色

if (e.item.itemtype == listitemtype.item ||e.item.itemtype == listitemtype.alternatingitem)
{
 e.item.attributes.add(
onclick,this.style.backgroundcolor=’#99cc00’;
    this.style.color=’buttontext’;this.style.cursor=default’;);
}
 
  写在datagrid的_itemdatabound里
if (e.item.itemtype == listitemtype.item ||e.item.itemtype == listitemtype.alternatingitem)
{
e.item.attributes.add(
onmouseover,this.style.backgroundcolor=’#99cc00’;
   this.style.color=’buttontext’;this.style.cursor=default’;);
e.item.attributes.add(onmouseout,this.style.backgroundcolor=’’;this.style.color=’’;);
}

8.关于日期格式

日期格式设定
dataformatstring
={0:yyyy-mm-dd}
  
//我觉得应该在itembound事件中
e.items.cell[你的列].text=datetime.parse(e.items.cell[你的列].text.tostring(yyyy-mm-dd))

9.获取错误信息并到指定页面

//不要使用response.redirect,而应该使用server.transfer
  e.g
// in global.asax
protected void application_error(object sender, eventargs e) {
if (server.getlasterror() is httpunhandledexception)
server.transfer(
myerrorpage.aspx);

//其余的非httpunhandledexception异常交给asp.net自己处理就okay了 🙂
}

  
//redirect会导致post-back的产生从而丢失了错误信息,所以页面导向应该直接在服务器端执行,这样就可以在错误处理页面得到出错信息并进行相应的处理 

10.清空cookie

cookie.expires=[datetime];
response.cookies(
username).expires = 0

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » ASP.NET程序中常用代码汇总(一)-.NET教程,Asp.Net开发
分享到: 更多 (0)