web 2.0

ASP.NET(vb.net) & runat=”server”

ASP.NET(vb.net) & runat=”server” The runat=”server” is ASP.NET tags and HTML Tags, for Web Control , HTML Control send all tags processing on web server and return all result to web browser.

ShotDev Focus:
- ASP.NET(vb.net) & runat=”server”

Example

RunatServer.aspx

<%@ Page Language="VB" %>
<%
Response.write ("This is ASP Tag")
%>
<script runat="server">
Sub Page_Load()
Me.txtName.Text = "This is ASP.NET Tag"
End Sub
</script>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<form runat="server">
<%
Response.write("This is ASP Tag<br>")
%>
<asp:Label id="lblText" runat="server" text="Text"></asp:Label>
<asp:TextBox id="txtName" runat="server"></asp:TextBox>
</form>
</body>
</html>

Screenshot

ASP.NET(vb.net) & runat=”server”
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (No Ratings Yet)
Loading ... Loading ...

One Response to “ASP.NET(vb.net) & runat=”server””

  1. 2systematically…

Leave a Reply

You must be logged in to post a comment.