Help getting started

  • Thread starter Thread starter Steve Westwood
  • Start date Start date
S

Steve Westwood

I am just starting with C#. I placed a image from the tool bar on my
webform and a table. They show up in design mode but not when I run it. I
also have a label that shows up in both modes. Can someone help


Here is the source:



<%@ Page language="c#" Codebehind="Logon.aspx.cs" AutoEventWireup="false"
Inherits="Logon.WebForm1" debug="False"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>Net VMI</title>
<meta content="Microsoft Visual Studio 7.0" name="GENERATOR">
<meta content="C#" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5"
name="vs_targetSchema">
</HEAD>
<body background="../images/Background.gif" MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<asp:image id="NetVMI" style="Z-INDEX: 101; LEFT: 264px; POSITION:
absolute; TOP: 371px" tabIndex="1" runat="server" Height="195px"
Width="510px" ImageUrl="/images/Malha.gif" BorderStyle="Inset"
ImageAlign="AbsMiddle" ForeColor="#FFFFC0" BorderWidth="10px"
BorderColor="Black" AlternateText="Help"></asp:image></form>
<asp:Table id="Table1" style="Z-INDEX: 102; LEFT: 379px; POSITION:
absolute; TOP: 184px" runat="server" Height="134px" Width="341px"
BorderWidth="5px" BorderColor="Black" HorizontalAlign="Left">
<asp:TableRow>
<asp:TableCell Text="help"></asp:TableCell>
<asp:TableCell Text="3"></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell Text="2"></asp:TableCell>
</asp:TableRow>
</asp:Table>
<asp:Label id="Label1" style="Z-INDEX: 103; LEFT: 379px; POSITION:
absolute; TOP: 43px" runat="server" Height="60px"
Width="226px">test</asp:Label>
</body>
</HTML>
 
Back
Top