Z.K. -
Joined: 29 Apr 2009 Posts: 9
|
Posted: Sun May 31, 2009 2:55 am Post subject: ASP.NET form processing ? |
|
|
I have a web site with a form which works just fine, I then submit the form and its contents appear on a *.aspx page. Now, in Visual Web Designer, when I submit the form to the development server, the aspx page works fine.
I have a table that I put the data in and I center the table in the center of the page. If I put this web page on the abyss server, it works okay, but the table is no longer centered.
Anyone have any idea why this is and how to fix it?
code snippet:
<body style=" background-color:black;">
<form id="form_aspx" runat="server">
<div style=" margin-left:auto; margin-right:auto; text-align:center;">
<table border="2" style=" border-style: none; background-color:#a0a0a0;margin-top:20%;">
<tr>
<td style="width:250px; font-weight:bold;border-style: none; text-align:left;">
<% string firstname = Request.QueryString["firstname"]; %>
<% Response.Write("The First Name entered was : "); %>
</td> _________________ Z.K. |
|