Click here to Skip to main content
15,888,461 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Need some helpful sites on PHP Pin
sarfarazbhat12-Jul-12 21:44
sarfarazbhat12-Jul-12 21:44 
AnswerRe: Need some helpful sites on PHP Pin
Perspx5-Mar-09 7:37
Perspx5-Mar-09 7:37 
JokeRe: Need some helpful sites on PHP Pin
Curtis Schlak.5-Mar-09 10:15
Curtis Schlak.5-Mar-09 10:15 
AnswerRe: Need some helpful sites on PHP Pin
Marc Firth6-Mar-09 0:39
Marc Firth6-Mar-09 0:39 
AnswerRe: Need some helpful sites on PHP Pin
Mohammad Dayyan6-Mar-09 11:07
Mohammad Dayyan6-Mar-09 11:07 
AnswerRe: Need some helpful sites on PHP Pin
Vasudevan Deepak Kumar6-Mar-09 21:57
Vasudevan Deepak Kumar6-Mar-09 21:57 
Questionexport data to word document Pin
Shaimmaa4-Mar-09 22:24
Shaimmaa4-Mar-09 22:24 
QuestionCross Browser HTML Problem Pin
programmervb.netc++4-Mar-09 19:54
programmervb.netc++4-Mar-09 19:54 
I have been assigned an intranet project at work and I am having a very hard time finding a way to make my alignment work across browsers. The alignment looks as expected in IE but terrible in Firefox or Chrome etc... I thought that one of you guys that do this all the time might have a easy explanation.
Here is my HTML
In advance I am sorry for the huge post but I have no idea what part is causing the problem...
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="frmTroubleTicket.aspx.vb" Inherits="FSIntranet._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>First Step-Intranet</title>
<script type="text/javascript">
function sLostFocus(fld)
{
fld.className = 'normal';
}

function sGotFocus(fld)
{
fld.className = 'focus';
}
</script>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="frmTrouble" runat="server">
<table id="table1" border = "0">
<tr>
<td>
&nbsp;</td>
<td>
<img alt="First Step Logo" src="FS%20logo.JPG" width="35%" />
</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
<p style="font-size:16px;">Click <a href="//10.10.10.2/training">HERE</a> for the Training
Folder</p></td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
<hr /></td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
<p class="bText">Experiencing
PC Problems ? Let us help...</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
Please fill out the following form detailing the problems you are experiencing.</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
<table>
<tr>
<td style="width:20%" style="text-align:right;">Your Name:</td>
<td style="text-align:left;">
<asp:TextBox ID="txtName" runat="server" Width="350px"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2">
&nbsp
</td>
</tr>
<tr>
<td style="width:20%" style="text-align:right;">Your Location:</td>
<td style="text-align:left;">
<asp:TextBox ID="txtLocation" runat="server" Width="350px"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2">

</td>
</tr>
<tr>
<td colspan="2">
Nature of PC Problem(s):
</td>
</tr>
<tr>
<td colspan="2">

<asp:TextBox ID="txtProblem" runat="server" Height="183px" TextMode="MultiLine"
Width="475px"></asp:TextBox>

</td>
</tr>
<tr>
<td style="width:20%" style="text-align:right;">Email:</td>
<td style="text-align:left;">
<asp:TextBox ID="txtEmail" runat="server" Width="350px"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2">
&nbsp
</td>
</tr>
<tr>
<td style="width:20%" style="text-align:right;">Phone Number:</td>
<td style="text-align:left;">
<asp:TextBox ID="txtPhone" runat="server" Width="350px"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2">
&nbsp
</td>
</tr>
<tr>
<td colspan="2">
<asp:Button ID="btnSubmit" runat="server" Text="Submit" Width="120px"
Height="32px" />
&nbsp
<asp:Button ID="btnReset" runat="server" Text="Reset" Width="120px"
Height="32px" />
</td>
</tr>
</table>
</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
<hr /></td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
Copyright © 2009 First Step Inc.</td>
<td>
&nbsp;</td>
</tr>
</table>
</form>
</body>
</html>
AnswerRe: Cross Browser HTML Problem Pin
Guffa4-Mar-09 20:20
Guffa4-Mar-09 20:20 
GeneralRe: Cross Browser HTML Problem Pin
programmervb.netc++9-Mar-09 10:23
programmervb.netc++9-Mar-09 10:23 
GeneralRe: Cross Browser HTML Problem Pin
Guffa9-Mar-09 22:48
Guffa9-Mar-09 22:48 
GeneralRe: Cross Browser HTML Problem Pin
programmervb.netc++10-Mar-09 4:55
programmervb.netc++10-Mar-09 4:55 
GeneralRe: Cross Browser HTML Problem Pin
programmervb.netc++13-Mar-09 19:10
programmervb.netc++13-Mar-09 19:10 
GeneralOne example... Pin
Naruki23-Mar-09 21:01
Naruki23-Mar-09 21:01 
QuestionGood tools for browser capability detection? Pin
MattPenner4-Mar-09 6:00
MattPenner4-Mar-09 6:00 
AnswerRe: Good tools for browser capability detection? [modified] Pin
fly9044-Mar-09 7:33
fly9044-Mar-09 7:33 
GeneralRe: Good tools for browser capability detection? Pin
MattPenner4-Mar-09 8:10
MattPenner4-Mar-09 8:10 
GeneralRe: Good tools for browser capability detection? [modified] Pin
fly9044-Mar-09 8:17
fly9044-Mar-09 8:17 
AnswerRe: Good tools for browser capability detection? Pin
Curtis Schlak.5-Mar-09 10:21
Curtis Schlak.5-Mar-09 10:21 
GeneralRe: Good tools for browser capability detection? Pin
MattPenner6-Mar-09 9:30
MattPenner6-Mar-09 9:30 
GeneralRe: Good tools for browser capability detection? Pin
Curtis Schlak.6-Mar-09 9:41
Curtis Schlak.6-Mar-09 9:41 
QuestionGridView (Edit / Cancel) Slow with 4,000 Records [modified] Pin
hifiger20043-Mar-09 20:41
hifiger20043-Mar-09 20:41 
QuestionHow can I figure out why I am losing focus. Pin
Douha3-Mar-09 12:09
Douha3-Mar-09 12:09 
Questioncollect information about visitors with BHO Pin
Maverickcool3-Mar-09 7:14
Maverickcool3-Mar-09 7:14 
Questionhelp with ajax refresh with database Pin
petvampire3-Mar-09 5:40
petvampire3-Mar-09 5:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.