But I have no idea what it is or how it is used, or compilers used. Can someone please show a newbie where to start? I have went here: http://www.dreaminco...pnet-resources/ but unsure which tools are the best for someone who has completely no experience with it.
And lastly, how hard is ASP.NET? I know VB.NET, C++ and such, but learning ASP.NET, how hard is it to learn? This is the real question of this thread.
Thank you.
I want to learn ASP.NET
Page 1 of 111 Replies - 805 Views - Last Post: 11 July 2011 - 05:08 PM
Replies To: I want to learn ASP.NET
#2
Re: I want to learn ASP.NET
Posted 10 July 2011 - 11:25 AM
If you know VB.NET, ASP.NET is only a stones throw away. ASP.NET accepts C# and VB.NET. I don't have any tools or help resources for you, sorry.
Just like any other language, start here. (this is in C#, but you can also code in vb)
Just like any other language, start here. (this is in C#, but you can also code in vb)
<%@ Page Language="C#" AutoEventWireup="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<script runat="server">
void load_click(object sender, EventArgs e)
{
lab1.Text = "Hello World!";
}
</script>
<form id="form1" runat="server">
<div>
<asp:Label ID="lab1" runat="server" Text="O hi dar" />
<asp:Button ID="load" runat="server" Text="Click Me" onclick="load_click"/>
</div>
</form>
</body>
</html>
This post has been edited by Gavisann: 10 July 2011 - 11:39 AM
#3
Re: I want to learn ASP.NET
Posted 10 July 2011 - 11:45 AM
Thanks Gavisann, I am going through some tutorials and such on YT, it really... really resembles HTML interestingly enough. I'm going to go through more tutorials and start from scratch I guess, because some tutorials are basically doing things before I even know what they are.
#4
Re: I want to learn ASP.NET
Posted 10 July 2011 - 11:49 AM
#5
Re: I want to learn ASP.NET
Posted 10 July 2011 - 11:52 AM
Thank you so much! I appreciate it, I also used MSDN a lot when I started learning VB.NET, but VB.NET is more virtually pleasing.
#6
Re: I want to learn ASP.NET
Posted 10 July 2011 - 12:02 PM
Start here http://www.w3schools...asp/default.asp, then follow the DIC tutorials here. I looked at them and it slowly progresses into more complex concepts.
#7
Re: I want to learn ASP.NET
Posted 10 July 2011 - 02:00 PM
go to www.asp.net, they have quite a few good tutorials on asp.net for beginners
#8
Re: I want to learn ASP.NET
Posted 10 July 2011 - 02:59 PM
Yup, I'm doing asp.net and w3schools right now.
#9
Re: I want to learn ASP.NET
Posted 10 July 2011 - 09:04 PM
w3schools is notorious for having errors in their examples and explanations.
ASP.NET (and the .NET framework in general) is such a large topic that you are probably better off picking up a book at your local bookstore. There are a bunch of great ones to get you started and in the right direction. There are a lot of software development languages/technologies that you can grasp 99% by looking at online tutorials, but ASP.NET is really not one of them, in my opinion.
ASP.NET (and the .NET framework in general) is such a large topic that you are probably better off picking up a book at your local bookstore. There are a bunch of great ones to get you started and in the right direction. There are a lot of software development languages/technologies that you can grasp 99% by looking at online tutorials, but ASP.NET is really not one of them, in my opinion.
#10
Re: I want to learn ASP.NET
Posted 10 July 2011 - 09:14 PM
I'll try my best to see what I can learn then, thanks for advice.
#11
Re: I want to learn ASP.NET
Posted 11 July 2011 - 02:44 PM
Gavisann, on 10 July 2011 - 04:02 PM, said:
Start here http://www.w3schools...asp/default.asp, then follow the DIC tutorials here. I looked at them and it slowly progresses into more complex concepts.
Actually, this is classic asp, for asp.net the link is: http://www.w3schools.com/aspnet/
http://www.asp.net/get-started/ looking good
There is good books about it too, take a look
#12
Re: I want to learn ASP.NET
Posted 11 July 2011 - 05:08 PM
yes, big difference between just ASP and ASP.NET. Please do not try to apply ASP tutorials to ASP.NET, you will be seriously complicating your life.
Page 1 of 1
|
|

New Topic/Question
Reply



MultiQuote







|