What are the points to check for, when an ASP.NET button is not firing an event?
I have double-clicked the button to add an event-handler.
But event is not firing.
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="TeacherControlPanel.aspx.cs" Inherits="Teacher_TeacherControlPanel" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width: 346px">
<tr>
<td>
<asp:Label ID="labErrorMessage" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="Small" ForeColor="#C00000" Text="Error Message"></asp:Label></td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td>
Teacher Control Panel</td>
<td>
Mails</td>
<td>
Notices</td>
<td>
Uploads</td>
</tr>
<tr>
<td rowspan="3">
<table style="width: 134px">
<tr>
<td>
Username:</td>
<td>
<asp:Label ID="labUsername" runat="server" Text="labUsername"></asp:Label></td>
<td>
Teacher Code:
</td>
<td style="width: 3px">
<asp:Label ID="labTeacherCode" runat="server" Text="labTeacherCode"></asp:Label></td>
</tr>
<tr>
<td>
Name :</td>
<td>
<asp:Label ID="labName" runat="server" Text="labName"></asp:Label></td>
<td>
Department</td>
<td style="width: 3px">
<asp:Label ID="labDepartment" runat="server" Text="labDepartment"></asp:Label></td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
<td style="width: 3px">
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
<td style="width: 3px">
</td>
</tr>
</table>
</td>
<td>
<asp:Button ID="btnSendMail" runat="server" Height="24px" Text="Send Mail" Width="130px" OnClick="btnSendMail_Click" /></td>
<td>
<asp:Button ID="btnSubmitNewNotice" runat="server" Height="24px" Text="Submit New Notice"
Width="130px" /></td>
<td>
<asp:Button ID="btnViewUploads" runat="server" Height="24px" Text="ViewUploads" Width="130px" /></td>
</tr>
<tr>
<td>
<asp:Button ID="btnViewOldMails" runat="server" Text="View Old Mails" OnClick="btnViewOldMails_Click" /></td>
<td>
<asp:Button ID="btnViewOldNotices" runat="server" Height="24px" Text="View Old Notices"
Width="130px" /></td>
<td>
<asp:Button ID="btnViewDefaulters" runat="server" Height="24px" Text="View Defaulters"
Width="130px" /></td>
</tr>
<tr>
<td>
<asp:Button ID="btnReceivedMails" runat="server" Height="24px" Text="Received Mails"
Width="130px" /></td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td colspan="4" rowspan="1">
<asp:GridView ID="UploadsGridView1" runat="server">
</asp:GridView>
</td>
</tr>
</table>
</asp:Content>
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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;
using Ice_Web_Portal.ASP.NET.Utils;
using Ice_Web_Portal.BO;
public partial class Teacher_TeacherControlPanel : System.Web.UI.Page
{
string username = string.Empty;
protected void Page_Load(object sender, EventArgs e)
{
username = (string)Request.QueryString["username"];
Teacher teacher = Teacher.GetTeacherByUsername(username);
if (teacher != null)
{
labUsername.Text = username;
labName.Text = teacher.TeacherName;
labTeacherCode.Text = teacher.TeacherCode;
Dept dept = teacher.Department;
if (dept != null)
{
labDepartment.Text = dept.DeptName;
}
}
else
{
labErrorMessage.Text = "No teacher found";
}
}
protected void btnSendMail_Click(object sender, EventArgs e)
{
try
{
Server.Transfer(@"~/Teacher/TeacherSendMail.aspx?username=" + username);
//Response.Redirect(@"~/Student/StudentSendMail.aspx?username=" + username);
}
catch (Exception ex)
{
string m;
}
}
protected void btnViewOldMails_Click(object sender, EventArgs e)
{
try
{
Server.Transfer(@"~/Teacher/TeacherOldMail.aspx?username=" + username);
//Response.Redirect(@"~/Student/StudentSendMail.aspx?username=" + username);
}
catch (Exception ex)
{
string m;
}
}
}
This is the master page:
MasterPage.master
-----------------
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<!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>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<table>
<tr>
<td><asp:HyperLink ID="homePageHyperlink" runat="server" NavigateUrl="~/Default.aspx">Home</asp:HyperLink></td>
<td rowspan="5"> <asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder></td>
</tr>
<tr>
<td><asp:HyperLink ID="studentControlPanelHyperlink" runat="server">Student</asp:HyperLink></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
</table>
</form>
</body>
</html>
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 MasterPage : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
}
}