?<BR>I created a simple Web Application with VS.Net, but<BR>when I tried to run with IIS 5.0, the web form button did not<BR>display. I am wondering does anyone know why? or is it <BR>something I am doing wrong.<BR><BR>Please help.Show the relevant code (no need to do an entire code dump).<BR><BR>Here's a simple ASP.NET Web page that should work:<BR><BR><asp:button runat="server" id="btnSubmit" Text="Submit" /><BR><BR>BTW, do you have the .NET Framework installed? If not, the button controls won't be rendered... (I'm assuming you do if you are using VS.NET on the same box that you are testing your ASP.NET Web pages...) <BR>Please find the complete of sample code below.<BR><BR>I do have .NET Framework installed and plus Visual Studio .NET.<BR>I also test ASP.NET web pages on the same computer that I<BR>installed with IIS 5.0.<BR><BR>Is there anything I need config my IIS in order to run<BR>ASP.NET? I installed VS.NET and then IIS 5.0.<BR>That's all I did. I did not config anything.<BR><BR>Please Advise and Thank you.<BR><BR><%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb" Inherits="WebApplication1.WebForm1"%><BR><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><BR><HTML><BR> <HEAD><BR> <title>WebForm1</title><BR> <meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0"><BR> <meta name="CODE_LANGUAGE" content="Visual Basic 7.0"><BR> <meta name="vs_defaultClientScript" content="JavaScript"><BR> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"><BR> </HEAD><BR> <body MS_POSITIONING="GridLayout"><BR> <form id="Form1" method="post" runat="server"><BR> <INPUT style="Z-INDEX: 101; LEFT: 51px; WIDTH: 164px; POSITION: absolute; TOP: 92px; HEIGHT: 36px" type="text" size="22" id="Text1" name="Text1" runat="server"><BR> <asp:Button id="Button1" style="Z-INDEX: 102; LEFT: 51px; POSITION: absolute; TOP: 150px" runat="server" Width="107px" Height="32px" Text="Button" ForeColor="Black"></asp:Button><BR> <DIV style="DISPLAY: inline; Z-INDEX: 103; LEFT: 51px; WIDTH: 420px; POSITION: absolute; TOP: 14px; HEIGHT: 52px" ms_positioning="FlowLayout"><STRONG><SUB><SUP style="FONT-WEIGHT: bold; FONT-SIZE: x-large; COLOR: blue; FONT-STYLE: normal; FONT-VARIANT: normal">Sample <BR> Web Forms Page</SUP></SUB></STRONG></DIV><BR> </form><BR> </body><BR></HTML>