首页 > 编程 > .NET > 正文

ASP.NET程序中常用代码汇总(一)

2024-07-10 13:06:48
字体:
来源:转载
供稿:网友

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
  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
web窗体状态栏内类似跑马等效果的实现
第一步:定义一个javascript代码段

<script language="javascript">
var strmsg = "          欢迎光临本站点by lovefxn          ";
function doload(index)
{
window.status = strmsg.substr(index,index+10);
index = (index>=strmsg.length-10?0:index+1);
window.settimeout('doload('+index+')',300,"javascript");
}
</script>

该代码的功能是:每隔300毫秒则执行一次窗体状态栏内容的更新,并对显示内容长度作判断。

注意其中strmsg内的空格用来实现一段空白效果。

第二步:

在 <body >内添加函数的实现。

看看效果,是不是比较好玩?

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表