自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

转载 JS获取屏幕高度和宽度等信息

document.write("网页可见区域宽:"+document.body.clientWidth+"");        document.write("网页可见区域高:"+document.body.clientHeight+"");        document.write("网页可见区域宽:"+document.body.offsetWidth+"(包括边线的宽)");

2011-11-12 14:14:57 399

转载 gridview 导出Excel

#region 导出Excel    public override void VerifyRenderingInServerForm(Control control)    {        //Confirms that an HtmlForm control is rendered for    }    private void ToExcel(Control ctl,

2011-11-12 09:46:59 214

转载 换行符替换

protected String FormatBody(String sBody)    {        return (sBody.Replace("\n", ""));    }

2011-11-12 09:42:33 310

转载 如何在ASP.NET中PostBack后保持页面的位置(滚动条位置)

When web pages are posted back to the server, by default user is returned to the top of the page. On a large web page, you might have a requirement to scroll down the user automatically to the last po

2011-11-12 09:37:23 280

转载 给GridView每行增加一个序号

在GridView.RowDataBound   事件   里添加代码以处理编号的显示,比如如下的代码显示对单元格的操作:      protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)    {        if (e.Row.RowType == DataControlRowT

2011-11-12 09:32:30 281

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除