int n = 0; 🎜>public void ProcessRequest (HttpContext context) { context.Response.ContentType = "text/html";
string path = context.Request.MapPath("数値増加.htm"); >string html = System.IO.File.ReadAllText(path); //ページが初めてロードされたかどうかを判断します string viewstate = context.Request.Form["_viewstate"]; if (!string.IsNullOrEmpty(viewstate)) { //ボタンをクリック post //隠しフィールドの値を取得します string s = context.Request.Form["_div" ]; if (int.TryParse(s, out n )) { n ; html = html.Replace("@n",n.ToString()); } } else { //ページが初めてロードされ、div と div に対応する隠しフィールドに値を割り当てます html = html.Replace ("@n", n.ToString()); } context.Response.Write(html);