Can't see ASP control

T

Toufik

Hi,
Just to play with asp.net, I've created a web project and a simple aspx web
form that contains aweb controls and html controls
When I open it in the browser, I see the html controls only, can't see any
web control.
Here is the page code.
thanks for any help


<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb"
Inherits="webproj.WebForm1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta content="Microsoft Visual Studio.NET 7.0" name="GENERATOR">
<meta content="Visual Basic 7.0" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5"
name="vs_targetSchema">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
&nbsp;
<asp:TextBox id="TextBox1" style="Z-INDEX: 101; LEFT: 158px; POSITION:
absolute; TOP: 61px" runat="server"></asp:TextBox>
<asp:Button id="Button1" style="Z-INDEX: 102; LEFT: 220px; POSITION:
absolute; TOP: 154px" runat="server" Text="Button"
BackColor="Red"></asp:Button>
<asp:TextBox id="TextBox2" style="Z-INDEX: 103; LEFT: 155px; POSITION:
absolute; TOP: 105px" runat="server" Width="171px"
Height="40px"></asp:TextBox>
<input type="button" style="Z-INDEX: 104; LEFT: 260px; POSITION:
absolute; TOP: 344px"></form>
</body>
</HTML>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top