Asp.net server controls

  • Thread starter Thread starter satish
  • Start date Start date
S

satish

I have placed servercontrols on Webforms , when i view
through browser i am not able to see that controls such as

buttons,label etc. I have included runat =server also.Is
there any config setting has tobe made? I can view html

controls when i placed on web forms .So i can view html
controls (textbox) in browser. If i use server controls

blank is comming .when I view source by right clicking on
browser it is not converted to <input type="textbox"

It remains same <asp:Button id=Button1"?

Help me with respect to above query. I have beta version
of .net . after installing this ,i have reinstalled IIS


Thanks

<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="tmp.aspx.vb" Inherits="lwTWC.tmp"%>

<html>
<body>
<form runat="server">

<asp:TextBox id="tbox1" runat="server" />
<br /><br />
<asp:Button Text="Submit" runat="server" />
</form>
</body>
</html>
 
Back
Top