I have been playing around with Mozzila, and find it too be a rather nice speedy browser, but I do ASP.NET programming and such and seem to have some issues with ASP.NET pages displaying properly.
It seems to be with regards to coloring, I guess ASP controls as well
, since those are the things I have colored.
See example code below!
<%@ Page Language="C#" %>
<script runat="server">
// Insert page code here
//
void Submit_Click_1(object sender, EventArgs e) {
if (txtPassword.Text == "test")
{
Session["UserName"] = txtName.Text;
//Response.Redirect("Test.aspx");
Server.Transfer("Test.aspx");
}
else
{
lblFalse.Text = ("Incorrect Pasword Please try again");
}
}
</script>
<html>
<head>
</head>
<body>
<p align="center">
<asp:Label id="lblHeader" runat="server" head="head" height="25px" width="100%" backcolor="Black" forecolor="White" font-bold="true" text="ASPWEB Login Page" tooltip="Welcome to ASPWEB Login Page">ASPWEB
Login Page</asp:Label>
</p>
<form runat="server">
<!-- Insert content here -->
<table cellspacing="15" align="center" sytle="font:10pt verdana;border-width:2;border-style:solid;border-color:black;">
<tbody>
<tr>
<td>
<b>UserName:</b>
</td>
<td>
<asp:TextBox id="txtName" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<b>Password:</b>
</td>
<td>
<asp:TextBox id="txtPassword" runat="server" TextMode="Password"></asp:TextBox>
</td>
</tr>
<tr colspan="2">
<td>
<asp:Button id="Submit" onclick="Submit_Click_1" runat="server" Text="Submit" Width="77px"></asp:Button>
</td>
</tr>
</tbody>
</table>
</form>
<div align="center"><asp:Label id="lblFalse" runat="server" width="843px" backcolor="White" font-bold="True" font-size="Medium"></asp:Label>
</div>
</body>
</html>
Anyone have a solution? Recommendation?