Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Client Side and Server Side Controls

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 166
    Comment on it

    In .NET Framework we have two types of controls:

    1 Client Side

    2 Server Side

     

    Client side controls are HTML controls usually used for client end.

    Ex : <input type="button" />

     

    Server Side controls are ASP controls specially meant for server side

    Ex: <asp:Button runat="server" Id="btnSubmit"> </asp:Button>

     

    We can make a client side control server side by embedding runat="server" tag inside it

    Ex : <input type="button" runat="server" />

    This control is now server side

     

    We cannot make a server side control client side

    If we Do this it will throw an error

    Ex :<asp:Button Id="btnSubmit"> </asp:Button>

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: