一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

淺談ASP.NET的Postback 實(shí)例代碼第1/2頁

我們知道,無論是ASP.NET1.x,2.0,甚至是以后的版本,ASP.NET最終Render到Client端通過瀏覽器瀏覽的都是一樣:一個(gè)單純的HTML。Client通過Submit Form的方式將填入Form的數(shù)據(jù)提交給Server進(jìn)行處理。我們現(xiàn)在來看看ASP.NET整個(gè)Postback程序處理的過程。
首先我們通過一個(gè)Sample來看ASP.NET如何處理一個(gè)通過Click一個(gè)Button引起的Postback。下面是Web Page的HTML:
復(fù)制代碼 代碼如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.ASPx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Test Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<ASP:Label runat="server" ID="LabelMessage" ForeColor="red"></ASP:Label>
</div>
<div>
<ASP:Button runat="server" ID="Button1" Text="Button1" OnClick="Button1_Click" OnCommand="Button_Command" CommandArgument="Button1" />
<ASP:Button runat="server" ID="Button2" Text="Button2" OnClick="Button2_Click" OnCommand="Button_Command" CommandArgument="Button2" UseSubmitBehavior="false" />
<ASP:Button runat="server" ID="Button3" Text="Button3" OnClick="Button3_Click" OnCommand="Button_Command" CommandArgument="Button3" UseSubmitBehavior="false" />
</div>
</form>
</body>
</html>

很簡單,定義了3個(gè)Button,分別注冊了他們的兩個(gè)Event:Click和Command。3個(gè)Button的Command Event Hander是一樣的:Button_Command,通過指定的CommandArgument來讓Event Handler判斷到底是哪個(gè)Button觸發(fā)了Command Event。
下面是Code Behind:
復(fù)制代碼 代碼如下:
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;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
string message = string.Format("The {0} event of {1} is fired", "Click", "Button1");
this.LabelMessage.Text = message;
}
protected void Button2_Click(object sender, EventArgs e)
{
string message = string.Format("The {0} event of {1} is fired", "Click", "Button2");
this.LabelMessage.Text = message;
}
protected void Button3_Click(object sender, EventArgs e)
{
string message = string.Format("The {0} event of {1} is fired", "Click", "Button3");
this.LabelMessage.Text = message;
}
protected void Button_Command(object sender, CommandEventArgs e)
{
string message = string.Format("The {0} event of {1} is fired", "Command", e.CommandArgument);
this.LabelMessage.Text += "; " + message;
}
}

我們來運(yùn)行這個(gè)Page,并Click某個(gè)按鈕(比如Button2):

我們通過最上方的Message可以看出,Button2的Click Event和Command先后觸發(fā)。
這篇Blog的主旨就是從方法調(diào)用的角度講述整個(gè)程序運(yùn)行的過程:從HTML 被Render到Client端,到用戶Click某個(gè)按鈕,輸入被Postback到Server端,并觸發(fā)兩個(gè)Event,執(zhí)行Event Handler打印出相關(guān)的Message。
首先我們來看看ASP.NET設(shè)計(jì)的Page Render到Client端的HTML是什么樣子:
復(fù)制代碼 代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>
Test Page
</title>
</head>
<body>
<form name="form1" method="post" action="Default.ASPx" id="form1">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTA0NDQ2OTE5OWRk281L4eAk7iZT10hzg+BeOyoUWBQ=" />
</div>
<script type="text/Javascript">
<!--
var theForm = document.forms['form1'];
if (!theForm) {
theForm = document.form1;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
// -->
</script>
<div>
<span id="LabelMessage" style="color:Red;"></span>
</div>
<div>
<input type="submit" name="Button1" value="Button1" id="Button1" />
<input type="button" name="Button2" value="Button2" onclick="Javascript:__doPostBack('Button2','')" id="Button2" />
<input type="button" name="Button3" value="Button3" onclick="Javascript:__doPostBack('Button3','')" id="Button3" />
</div>
</form>
</body>
</html>

AspNet技術(shù)淺談ASP.NET的Postback 實(shí)例代碼第1/2頁,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 老司机51精品视频在线观看 | 婷婷丁香四月 | 加勒比毛片| www.黄在线| 中文字幕一区二区在线播放 | 久久精品免费全国观看国产 | 久久久高清日本道免费观看 | 91精品免费在线观看 | 天天综合网网欲色 | 国产区视频在线 | 91视频免费网址 | 国产精品日韩欧美在线第3页 | 国产精品被窝福利一区 | 国产福利91精品一区二区 | 国产成人综合亚洲欧洲色就色 | 久草婷婷| 成人免费网址在线 | 在线色网| 欧美日韩一区二区三区视频 | 午夜激情一区 | 成人在色线视频在线观看免费大全 | 视频一区二区在线播放 | 亚洲香蕉网久久综合影院3p | 人和拘一级毛片 | 玖玖在线精品 | 91中文字幕yellow字幕网 | 中文字幕99在线精品视频免费看 | 欧美色欧美色 | 色综合a| 黄 色 免 费 网站在线观看 | 91福利视频免费 | 中文字幕日韩有码 | 91在线亚洲综合在线 | 国产精品成人免费综合 | 国产原创自拍 | 天天干天天操天天舔 | 337q日本大胆欧美人术艺术 | 国产精品久久亚洲不卡4k岛国 | 四虎海外影库www4hu | 亚欧色视频在线观看免费 | 午夜视频久久久久一区 |