[2005] VB.Net and ASP.Net
I didnt know where to post this but it is related with vb.net and there are more people here :D
I was wondering, is there any connectiong between ASP.Net and VB.Net. (I dont mean the framework :D)
I know programming on VB.Net but I will learn a web programming language. I am confused between php and asp.net. Can I bring my vb.net knowledge and asp.net knowledge together in the future and develope better webites or softwares?
Is VB.Net knowledge an advantage for ASP.Net? Can they be used together?
Thanks
Re: [2005] VB.Net and ASP.Net
Inshort
1. VB.NET
VB.NET is just one of the programming languages which can be used in dotnet
programing. Just like C# , Jscript..NET ,also J#. In fact, it's quite
different from the former VB language, but since they're similiar on the
syntax, I think you'll be very familiar with its syntax since you are
familiar with VB or VBSCRIPT.
2. ASP.NET
This is a new web based application developing technique. The ASP.NET has a
complete new concept quite different from and much stronger and powerful
than the classic ASP. It's a not a programming language but a technique.
We can build ASP.NET web application via may different programming
languages such as VB.NET, C#, JScript.NET ..
Re: [2005] VB.Net and ASP.Net
They're the same thing. ASP.NET is using VB.NET (or C#, etc) with an object library of things that are designed to be displayed on a web page instead of on a windows form.
For instance, if you want to put something into a textbox, on a windows form, you would use a Windows.Forms.TextBox; on an web page, you would use a System.Web.UI.WebControls.TextBox.
The programming language is the same, all that's different is the objects that you use.
Re: [2005] VB.Net and ASP.Net