分类

链接

2024 年 11 月
 123
45678910
11121314151617
18192021222324
252627282930  

近期文章

热门标签

新人福利,免费薅羊毛

ASP.NET优化性能的方法

ASP.NET优化性能的方法  1. 数据库访问性能优化   数据库的连接和关闭   访问数据库资源需要创建连接、打开连接和关闭连接几个操作。这些过程需要多次和数据库交换信息以通过身份验证,比较耗费服务器资源。ASP.NET中提供了连接池(Connection Pool)改善打开和关闭数据库对性能的影响。系统将用户的数据库连接放在连接池中,需要时取出,关闭时收回连接,等待下一次的连接请求。   连接池的大小是有限的,如果在连接池达到最大限度后仍需求创建连接,必然大大影响性能。因此,在建立数据...

.NET, Others 暂无评论 阅读(2,063)

ASP.NET验证码

using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Drawing; using System.Text; /// <summary> /// VryImgGen 的摘要说明 /// </summary> public class VryImgGen { public static string ChineseChars = String.Empty; /// <summary> /// 英文与数字串 /// ...

.NET, Others 暂无评论 阅读(1,839)

ASP.NET页面刷新的实现方法

先看看ASP.NET页面刷新的实现方法:第一:  private void Button1_Click( object sender, System.EventArgs e ) {  Response.Redirect( Request.Url.ToString( ) );  } 第二: private void Button2_Click( object sender, System.EventArgs e ) { Response.Write( " < script language=javascript>window.location.href=document.URL; </script>" ); } 第三: private void Button3_Click( object sender, System.EventArgs e ) ...

.NET, Others 暂无评论 阅读(1,803)

asp.net为服务器控件客户端事件

//添加CLICK事件this.articleTitle.Attributes.Add("onclick", "<script>location.href='article.aspx?articleID='"+articleID+"</script>");//添加onblur事件, checkVerify()为客户端JS事件this.txtCheck.Attributes.Add("onblur", "checkVerify()");

.NET, Others 暂无评论 阅读(1,586)

ASP.NET实现图片延迟加载

JavaScript图片预加载代码,完后载入显示loading 第一种是不错的方法噢: 一、 <html> <head> <style type="text/css"> div{border:#aaaaaa 3px solid;width:200px;padding:2px;margin:2px 9px;font-size:12px;line-height:22px;color:#999999;} .ipt1{width:160px;font-size:12px;color:#1F6478;border:#999999 1px solid;margin-left:9px;} .ipt2{border:#999999 1px solid;margin-left:6px;color:#666666} p{margin:0px;padding:0px;background-image:url(http://www.codefans.net/jscss...

.NET, Others 暂无评论 阅读(2,174)

asp.net解决IE6、360 CSS不兼容问题

除使用CSS  HACK外,可以使用统一的IE7风格,QQ空间就是这样的,在HEAD里加一句<meta http-equiv="x-ua-compatible" content="ie=7" />

.NET, Others 暂无评论 阅读(1,955)

C#设置Cookies

一、设置cookies的方法很简单,有以下两种方法:    1、直接添加Cookie值:    Response.Cookies["userName"] = "Tom";    Response.Cookies["userName"].Expires = DateTime.Now.AddDays(1) ; \过期时间,在Cookies文件中无法查看,也不能调用.    2、创建Cookie对象的一个实例:    HttpCookie cookie=new HttpCookie("userName");    cookie.Value = "Tom";    cookie.Expires = DateTime.Now.AddD...

.NET, Others 暂无评论 阅读(1,565)

完美实现 ASP.NET 2.0 中的URL重写伪静态(映射)

完美实现 ASP.NET 2.0 中的URL重写伪静态(映射)  URL重写好处有很多,如有利于SEO、便于记忆、隐藏真实路径使安全性提高、便于更新等等。本文概要描述了各种URL重写的实现。 ASP.NET 2.0 中实现URL重写有很多方法,如:Global.asax中捕获用Application_BeginRequest请求,再用HttpContext类 的Rewrite方法或Server.Transfer方法实现重写;自己实现IHttpModule实现重写;还有的利用服务器的404错误引导到新的 页面实现重写;最后就是用组件实现重写(基本原理大多也是实现IHttpModule、IHttpHandler接口处理请求)。...

.NET, Others 暂无评论 阅读(9,234)

asp.net弹出提示与跳转方式

asp.net弹出提示与跳转方式1,页面中显示:Response.Write(i.ToString ()+"<br>");  2,对话框显示:Page.RegisterStartupScript("msg", "<script>alert('" + _info + "')<" + "/script>");Response.Write("<script>alert('"+_info+"')<" + "/script>"); 3.提示之后再跳转:Response.Write("<script>alert('注册成功');window.location='/employee/stulogsuccess.aspx';<" + "/script>");注:此方法不可用window.history.back()返回; 4.直接跳转:Resp...

.NET, Others 暂无评论 阅读(1,765)

asp.net word转成html

using System;  using System.Collections;  using System.Configuration;  using System.Data;  using System.Web;  using System.Web.Security;  using System.Web.UI;  using System.Web.UI.HtmlControls;  using System.Web.UI.WebControls;  using System.Web.UI.WebControls.WebParts;  using Word = Microsoft.Office.Interop.Word;  public partial class test : System.Web.UI.Page  {  protected void Page_Load(object sender, EventArgs e)  {  WordToHtml("d:\\yijian.doc");  }  /// <summary...

.NET 暂无评论 阅读(2,050)