ASP.NET 檔°¸ÏÂ載
//TransmitFileʵÏÖÏÂÔØ
protected void Button1_Click(object sender, EventArgs e)
{
/*
΢ÈíΪResponse¶ÔÏóÌṩÁËÒ»¸öÐµķ½·¨TransmitFileÀ´½â¾öʹÓÃResponse.BinaryWrite
ÏÂÔØ³¬¹ý400mbµÄÎļþʱµ¼ÖÂAspnet_wp.exe½ø³Ì»ØÊÕ¶øÎÞ·¨³É¹¦ÏÂÔØµÄÎÊÌâ¡£
´úÂëÈçÏ£º
*/
Response.ContentType = "application/x-zip-compressed";
Response.AddHeader("Content-Disposition", "attachment;filename=z.zip");
string filename = Server.MapPath("DownLoad/z.zip");
Response.TransmitFile(filename);
}
//WriteFileʵÏÖÏÂÔØ
protected void Button2_Click(object sender, EventArgs e)
{
/*
using System.IO;
*/
string fileName = "asd.txt";//¿Í»§¶Ë±£´æµÄÎļþÃû
string filePath = Server.MapPath("DownLoad/aaa.txt");//·¾¶
FileInfo fileInfo = new FileInfo(filePath);
Response.Clear();
Response.ClearContent();
Response.ClearHeaders();
Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);
Ïà¹ØÎĵµ£º
ÀûÓÃJQueryµÄ$.ajax()¿ÉÒԺܷ½±ãµÄµ÷ÓÃasp.netµÄºǫ́·½·¨¡£
ÏÈÀ´¸ö¼òµ¥µÄʵÀýÈÈÈÈÉí°É¡£
1¡¢ÎÞ²ÎÊýµÄ·½·¨µ÷ÓÃ
asp.net code£º
using System.Web.Script.Services;
[WebMethod]
public static string SayHello()
{
return "Hello Ajax!";
}
×¢Ò⣺1.·½·¨Ò»¶¨Òª¾²Ì¬·½·¨£¬¶øÇÒÒªÓÐ[WebMethod]µÄÉùÃ÷
JQuery ......
ASP.NET Ò³ÃæÊ¼þÖ´ÐÐ˳Ðò ÊÕ²Ø
¹ý³ÌÃèÊö
ÏÂÃæÊÇASP.NETÒ³Ãæ³õʼµÄ¹ý³Ì:
1. Page_Init();
2. Load ViewState;
3. Load Postback data;
4. Page_Load();
5. Handle control events;
6. Page_PreRender();
7. Page_Render();
8. Unload event;
9. Dispose method called;
ÏÂÃæ¶ÔÆäÖеÄһЩ¹ý³Ì×÷ÏÂÃèÊö£º
1. Pa ......
ASP.NET ÖеÄÉè¼ÆÄ£Ê½Ö®MVCƪ
ASP.NET
ÖеÄÉè¼ÆÄ£Ê½Ö®
MVC
ƪ
Éè¼ÆÄ£Ê½
MVC
Ò³Ãæ¿ØÖÆÆ÷
Ä£°åÓë
Page
»ùÀà
Éè¼ÆÄ£Ê½
Èí¼þ¿ª·¢ÖУ¬Èí¼þ¸´ÓúÍÍŶÓÐ×÷¶¼Ò»Ö±ÊÇ×îΪÈËÃǹØ×¢µÄÖØÒªÎÊÌâÖ®Ò»¡£ÓÐȤµÄÊÇ£¬ÕâÁ½¸öËÆºõÊôÓÚÈí¼þ¹¤³Ì·¶³ëµÄÎÊÌâ¶¼ÓÐÒ»¸ö¹²Í¬µÄ¼¼Êõ·½ÃæµÄ½â¾öÖ®µÀ£ºÉè¼ÆÄ£Ê½¡£
  ......
ÏÂÃæÊÇдcookie
1 HttpCookie cookie = new HttpCookie("Info");//¶¨Òåcookie¶ÔÏóÒÔ¼°ÃûΪInfoµÄÏî
2 DateTime dt = DateTime.Now;//¶¨Òåʱ¼ä¶ÔÏó
3 TimeSpan ts=new TimeSpan(1,0,0,0);//cookieÓÐЧ×÷ÓÃʱ¼ä£¬¾ßÌå²émsdn
4 cookie.Expires = dt.Add(ts);//Ìí¼Ó×÷ÓÃʱ¼ä
5 cookie.Values.Add("user","cxbkkk");//Ôö¼ ......
One of my bank customers planned to roll out a new ASP.NET web application serving as their critical internet banking portal. They faced some weird performance issue in their UAT environment. They noticed the CPU utilization was really high (above 90%) without any fluctuation. After checking ......