I am having a problem just posting a simple message on an ASP.Net site. The following is the dbtest.aspx page code:
==========================================================
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="dbtest.aspx.vb" Inherits="dbtest" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
<html xmlns=" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="lblTableOutput" runat="server"></asp:Label></div>
</form>
</body>
</html>
==========================================================
Here is the dbtest.aspx.vb file:
==========================================================
Partial Class dbtest
Inherits System.Web.UI.Page
Sub Page_Load(ByVal Sender As Object, ByVal e As EventArgs)
lblTableOutput.Text = "Test"
End Sub
End Class
==========================================================
Why is this not working? I am not even getting an error?
==========================================================
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="dbtest.aspx.vb" Inherits="dbtest" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
<html xmlns=" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="lblTableOutput" runat="server"></asp:Label></div>
</form>
</body>
</html>
==========================================================
Here is the dbtest.aspx.vb file:
==========================================================
Partial Class dbtest
Inherits System.Web.UI.Page
Sub Page_Load(ByVal Sender As Object, ByVal e As EventArgs)
lblTableOutput.Text = "Test"
End Sub
End Class
==========================================================
Why is this not working? I am not even getting an error?