
- Forum
- Programming Talk
- ASP
- Tag Used
Tag Used
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 syntax ...
-
Tag Used
What is the tag one can use to delimit ASP.Net code from HTML code? I want to know the syntax of the same. Someone give idea on this.
-
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.

Reply With Quote





