ASP.NET筆記之頁面跳轉、調試、form表單、viewstate、cookie的使用說明

來源:互聯網
上載者:User

1、頁面跳轉:

(1 伺服器傳輸

server.Transer(http://www.jb51.net);在定向到新頁面後,還是會顯示原來的URL,瀏覽器返回不會退回到原頁面,記錄也不會記錄。

應用於完整的控制傳輸,例如安裝嚮導。

(2 超連結

(3 瀏覽器重新導向 Redirect ,速度快,沒有發送到伺服器

(4 跨頁發送 PostBackUrl=“http://www.jb51.net” />

IsCrossPagePostBack用來判斷是否為跨頁提交

IsPostBack 是用來檢查目前網頁是否為第一次載入,當使用者第一次瀏覽這個網頁時Page.IsPostBack 會傳回False,載入完傳回True

2.調試

(1 修改.aspx 頁面的頂部的Page指令,添加 Trace=“true” 在瀏覽器中操作並查看,(對應狀態碼),測試完記得將true改回false!!!!

(2 插入追蹤記錄檔 Trace.warn("111") Trace.warn("cATEGORY"," 11",excp);

複製代碼 代碼如下:try { int a = 0; int b = 5 / a; }
catch (System.Exception ex) { Trace.Warn("zzl", "calling b=5/a", ex); }

瀏覽器中將會以紅色鮮豔字型顯示:

(3 web.config 應用程式跟蹤 trace

(4 斷點調試

3、form表單:get 和post

get是通過url傳值,post是通過將表單值隱藏到http報文中不顯示

get通過的資料有限,post才能傳遞大資料量

但是post會有瀏覽器提示重新提交表單的問題,get則沒有。

4、禁用viewstate:就讀不到上次給用戶端的值

自增:addTest.ashx

複製代碼 代碼如下:public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
string ispostback = context.Request["ispostBack"];
string value = "0";
if (ispostback == "true") {
value=context.Request["num_01"];
int valueInint = int.Parse(value);
valueInint++;
value = valueInint.ToString();
}

string filepath = context.Server.MapPath("addTest.htm");
string content = System.IO.File.ReadAllText(filepath);
content = content.Replace("@value",value);
context.Response.Write(content);
}

html
複製代碼 代碼如下:<form action="addTest.ashx" method="post">
<input type="hidden" name="ispostBack" value="true" />
<input type="hidden" name="num_01" value="@value" />
<div>@value
</div>
<input type="submit" name="" value="addOne" />
</form>

5、cookie

伺服器返回資料除了一般html資料,還有cookie,瀏覽器會把cookie值更新到本地瀏覽器,可能會消耗太多資源

http://www.jb51.net 所以網站的圖片伺服器會和主站網域名稱不同,減少cookie流量傳輸,以最佳化網站速率: http://www.myblogs.com/daomul.gif

6、每次請求都會new一個新的IhttpHandler介面的類“變數1”的執行個體進行處理

用完就GC掉,不會保持上次的值

用static “儲存”,所有訪問者都會訪問的執行個體

複製代碼 代碼如下:using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class vivideo_test_變數1 : System.Web.UI.Page
{
private int i = 0;
private static int j = 0;
protected void Page_Load(object sender, EventArgs e)
{

}
protected void Button1_Click(object sender, EventArgs e)
{
//i++;
//Label1.Text = i.ToString();

j++;
Label1.Text = j.ToString();
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.