ネットは一般的な処理プログラムを通じてユーザーコントロールのデータ保持、Ispostback【第二版は)asxファイルと別れます.
8168 ワード
直接コード:
HTMLコードでは、フォーム内のinputタグのvalue値をまず一つのプレースホルダで占め、その後、shaxで置換します.
まず、ioのFile.ReadAll Text()方法でファイルを読みます.
HTMLコードでは、フォーム内のinputタグのvalue値をまず一つのプレースホルダで占め、その後、shaxで置換します.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<form action = "02jsqHandler.ashx" method = "post">
<input type = "text" name = "txtNum1" value = "@txtNum1" />+
<input type = "text" name = "txtNum2" value = "@txtNum2" />
=<input type = "text" name = "txtResult" value = "@txtResult" />
<input type = "hidden" name = "IsPostBack" value = "false" />
<input type = "submit" value = " " />
</form>
</body>
</html>
asxコード:まず、ioのFile.ReadAll Text()方法でファイルを読みます.
public class _02jsqHandler : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/html";
// html
string path = context.Server.MapPath("03jsq2.htm");
string strHtml = File.ReadAllText(path);
//
int n1 = 0, n2 = 0, result = 0;
bool ispostback = Convert.ToBoolean(context.Request.Form["IsPostBack"]);
if (!ispostback) // aspx.cs IsPostBack
{
// 1 2
string sn1 = context.Request.Form["txtNum1"];
string sn2 = context.Request.Form["txtNum2"];
if (int.TryParse(sn1, out n1) && int.TryParse(sn2, out n2))
{
result = n1 + n2;
}
//context.Response.Write(result.ToString());
}
// html @ ( )
strHtml = strHtml.Replace("@txtNum1", n1.ToString())
.Replace("@txtNum2", n2.ToString())
.Replace("@txtResult", result.ToString());
// html
context.Response.Write(strHtml);
}
public bool IsReusable {
get {
return false;
}
}