I know that we have client-side controls, and we have server-side controls. Client-side controls are the basic HT...">

<type = "input" runat = "server">

I know that we have client-side controls, and we have server-side controls. Client-side controls are the basic HTML controls and all other tags, while server-side controls are similar to <asp:Button> and <asp: Textbox> .

Now, when I talk about something like that, I know that this will be executed on the server, so it is a server control, but it cannot claim asp control at the same time.

How is this functionally different from management?

+4
source share
1 answer

when you have something with runat="server" , you give it an identifier and you can manipulate it in your code as if it were a regular control (with specific properties that correspond to their normal HTML attributes)

+3
source

Source: https://habr.com/ru/post/1399462/


All Articles