Asp.net

aditk8149

New member
I am a newbie in ASP.NET.

I want a help from you all regarding the development.
I want to know what all sites I can refer so as to make myself comfortable in ASP.NET

More of a hands-on will also add into my knowledge.
Please feel free to suggest!
 
I'm a newbie here and would also like some help on this topic because I would like to incorporate it in my project. If any one has any suggestion on a great site that they might have learned from, please post it and thanks.
 
Well, before asking people for help, you really need to set off on your own to see what you can learn without anyone else's help in terms of forums and whatnot.

Here's some stuff I looked up:

Choosing the Right Programming Model : The Official Microsoft ASP.NET Site

Example: (wiki)

<!DOCTYPE html PUBLIC "---//W3C//DTD XHTML 1.0 //EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
// Assign the datetime to label control
lbl1.Text = DateTime.Now.ToLongTimeString();

}
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Sample page</title>
</head>
<body>
<form id="form1" runat="server">


The current time is: <asp:Label runat="server" id="lbl1" />

</form>
</body>
</html>

That's all I could find that I found useful, but i'll try digger a bit digger later :)
 
Asp.net is a server side Web application framework designed for web site development, it's support HTML, CSS, JavaScript and server scripting language.
 
Last edited:
ASP.net is server side language. It is work form the frame work. Asp Stand for the Active server pages. Asp is square than php language. This language is used to creating the websites.
 
you are here and asking about asp that means you made your mind but for a total newbie i would suggest you to first check out w3c school and official Microsoft website for free beginners video tutorials .
 
ASP.net is server side language. It is work form the frame work. Asp Stand for the Active server pages. Asp is square than php language. This language is used to creating the websites.
<html>
<body>
<%
response.write("My first ASP script!")
%>
</body>
</html>
 
Back
Top