Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><code>&lt;asp:TextBox&gt;</code> is a serveriside control wihich eventually gets converted to <code>&lt;input</code> as page gets rendered to html.Similar to <code>&lt;asp:TextBox&gt;</code> you will see that there are other controls which will get converted to standard HTML elements.</p> <pre><code>&lt;asp:TextBox&gt; </code></pre> <p>Is a serverside control so that you can access it in codebehind using its ID hence you can even perform .visible = true or false actions in code behind . </p> <p>These might help</p> <p><strong>ASP.NET Server Controls</strong><br> Advantages:</p> <ol> <li>ASP .NET Server Controls can however detect the target browser's capabilities and render themselves accordingly. No issues for compatibility issues of Browsers i.e page that might be used by both HTML 3.2 and HTML 4.0 browsers code to be written by you.</li> <li>Newer set of controls that can be used in the same manner as any HTMl control like Calender controls. (No need of Activex Control for doing this which would then bring up issues of Browser compatibility).</li> <li>Processing would be done at the server side. In built functionality to check for few values(with Validation controls) so no need to choose between scripting language which would be incompatible with few browsers.</li> <li>ASP .NET Server Controls have an object model different from the traditional HTML and even provide a set of properties and methods that can change the outlook and behavior of the controls.</li> <li>ASP .NET Server Controls have higher level of abstraction. An output of an ASP .NET server control can be the result of many HTML tags that combine together to produce that control and its events.</li> </ol> <p>Disadvantages:</p> <ol> <li>The control of the code is inbuilt with the web server controls so you have no much of direct control on these controls</li> <li>Migration of ASP to any ASP.NET application is difficult. Its equivalent to rewriting your new application</li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload