ASP.NET程序中常用的三十三种代码

 

Cookie.Expires = [DateTime]; 
Response.Cookies(
" UserName " ).Expires  =   0   

 

Cookie.Expires = [DateTime]; 
Response.Cookies(
" UserName " ).Expires  =   0   

 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 =】

     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

 

//  in global.asax 
protected   void  Application_Error(Object sender, EventArgs e) 

      
if  (Server.GetLastError()  is  HttpUnhandledException) 
      Server.Transfer(
" MyErrorPage.aspx " ); 

      
// 其余的非HttpUnhandledException异常交给ASP.NET自己处理就okay了 :) 
}  

待续

城市运行管理的重要性与挑战 城市运行体系是以人为本的服务和经济发展体系,涉及决策、管理和执行三个层次。当前城市运行管理面临城市化快速发展、资源环境制约和社会矛盾突出等挑战。信息技术的发展为城市运行管理提供了重要手段,城市信息化经历了数字化、智能化到智慧化的发展过程。我国城市信息化虽取得进展,但仍处于初级阶段,存在缺乏整体规划、资源浪费和协作效率不高等问题。 智慧城市综合运行管理解决方案 智慧城市运行管理心(SCOC)是支撑城市运行综合管理的神经枢,旨在掌控城市运行综合体征,促进服务型政府转型。该心通过全面整合运行资源,服务城市未来发展,提升城市运行水平和突发事件处置效率。心纵向提升综合职能,横向贯通专业分工,包括综合管理平台、专业管理平台和业务操作平台,覆盖城市交通、公共安全、生态环境等多个领域。 智慧城市综合运行管理平台的结构与功能 智慧城市综合运行管理平台包括决策支持系统、处置系统、基础设施和监测系统。平台通过综合展现系统、综合应急指挥系统、综合运行业务联动系统等,实现城市运行的综合监测和管理。物联网数据采集系统利用网络通讯技术,实现城市物联网设备的高效运行。平台还包含云计算业务支撑系统、城市基础数据库、视频图像云平台等,以支持城市运行管理的各个方面。 智慧城市综合运行管理解决方案的优势 该解决方案具有三个核心优势:首先,它提供了完整的智慧城市视角,不仅仅是指挥心或数据心,而是智慧城市的实际载体。其次,它建立了完整的城市运行联动体系,打通业务部门壁垒,形成有机融合的业务联动平台,提升业务处理效率和服务水平。最后,方案凝聚了多年智慧城市建设咨询经验,为城市运行管理提供了成熟的解决方案。 项目实施建议 智慧城市运行管理心的建设思路和项目实施建议是方案的重要组成部分,旨在指导城市如何有效实施智慧城市运行管理解决方案,以应对城市运行管理的挑战,提升城市管理的智能化和效率。通过这些建议,城市能够更好地规划和实施智慧城市项目,实现可持续发展。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值