This is a discussion on Tag Used within the ASP forums, part of the Programming Talk category; What is the tag one can use to delimit ASP.Net code from HTML code? I want to know the ...
|
|||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
The < Script > tag is used for delimiting ASP.Net code from HTML code in your pages. To get an ASP.NET page to run some code, we add a <script runat="server"> tag to specify where the code for this page will be. This <script> tag should go in between the <head> tag at the beginning of the file.
|