これは非常に奇妙です!以下のコードは、VS2010 で F5 キーを押すと正しく実行されますが、IIS7 サーバーで実行すると、ボタン クリック イベントが発生しません。私は一生これを理解することはできません!コードは次のとおりです。
<%@ 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></title>
</head>
<body>
<form id="form1" runat="server">
<script type="text/javascript">
//Put your JavaScript code here.
</script>
<div>
Hi World!<br />
<br />
<br />
<asp:Button ID="button1" Text="Click Here" runat="server" OnClick="button1_Click" />
<br />
<br />
<asp:Button ID="Button3" runat="server" onclick="Button3_Click" Text="Button" />
<br />
<br />
<asp:TextBox ID="results" runat="server" TextMode="MultiLine" Height="350px" Width="500px"></asp:TextBox>
</div>
</form>
</body>
</html>
コードファイルは次のとおりです。
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Configuration;
using System.Web.Security;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Telerik.Web.UI;
public partial class _default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
this.results.Text += "In Page_Load ";
}
protected void button1_Click(object sender, EventArgs e)
{
this.results.Text += "Hello! ";
return;
}
protected void Button3_Click(object sender, EventArgs e)
{
this.button1_Click(sender, e);
return;
}
}
Page_Load() は実行されますが、button1_Click() は実行されません。前もって感謝します。