TOC

This article is currently in the process of being translated into Gujarati (~31% done).

The basics:

Introduction

ASP.NET ટ્યુટોરીયલ માં આપનું સ્વાગત છે. માઈક્રોસોફ્ટ પ્રમાણે ,"ASP.NET એક તકનીકી રીત છે, જે .NET Freamwork નો એક ભાગ છે .જેની મદદથી જડપી અને શક્તિશાળી વેબ એપ્લીકેશન બનાવી શકાય છે.આ ટ્યુટોરીયલ તમને ASP.NET ફોર્મ બનાવતા શીખવાળશે જેમાં તમને સેર્વેર સ્ક્રીપ્ટ તરફનું જ્ઞાન હોવાની જરૂર નથી . તમને HTML અને CSS નું સામાન્ય જ્ઞાન પણ ચાલશે. ક્લાસિક ASP અને PHP માં કામ કરવાથી કોઈ ખાસ ફાયદો થતો નથી, પણ ASP.NET એ સાઈટ બનાવવાની એક નવવી જ ટેકનીક છે.

.NET એક સ્વાવલંબી ભાષા છે,જેનો અર્થ તમે તમારી એપ્લીકેશન બનાવવામાં કોઈ પણ .NET માં ચાલતી ભાષા નો ઉપયોગ કરી શકો. .NET એપ્લીકેશન લખવામાં c# અને VB.NET નો ઉપયોગ ખુબ જ થાય છે .જેમાં VB.NET એ VB(Visual Basic) પર આધારિત છે,અને c# એ .NET Freamwork સાથે રજુ કરવામાં આવ્યું હતું.ઘણાં લોકો c# ને “The .NET Language” પણ કહે છે. માઈક્રોસોફ્ટ અનુસાર આ બન્ને ભાષા નો ઉપયોગ એક સરખા કામ માટે કરી સકાય છે.આ બંને કઈ ખાસ અલગ નથી,અને જો તમે કોઈ એક ભાષા નો ઉપયોગ જાણો છો તો તમને બીજી ભાષા નો ઉપયોગ કરવામાં કોઈ મુસ્કિલ નઈ પડે.આ ટ્યુટોરીયલ માં આપને c# નો ઉપયોગ કરશું

One of the main differences between ASP.NET and Classic ASP/PHP is the fact that ASP.NET is compiled, while Classic ASP is always interpreted. PHP can be compiled by using commercial products, but usually it's interpreted as well.

Ever since the first version of ASP.NET, the framework has evolved in so many ways and so has the tools for you as a developer. We will discuss this in the next articles, before we create our very first ASP.NET website.

ASP.NET - Web Forms or MVC?

When ASP.NET was originally released, there was only one way of doing things. Later on, Microsoft was inspired by frameworks like Ruby on Rails and added the ability to use an MVC (Model-View-Controller) approach for your ASP.NET websites. With that move, ASP.NET was basically divided into ASP.NET Web Forms (the original approach) and ASP.NET MVC. They share a lot of functionality, thanks to the .NET framework, but there are many differences in how to accomplish even the most basic tasks.

In this tutorial, we will focus on the Web Forms part of ASP.NET.

IDE or editor?

This tutorial will use the free Visual Studio Community IDE from Microsoft. Despite what some people think, ASP.NET can be used without an IDE. It would be perfectly possible to write ASP.NET code in Notepad, and use the commandline compiler included with the .NET framework. Some people might actually prefer this "back to basics" way of doing things, but I believe that ASP.NET is best programmed with a decent IDE. You can use an IDE from another vendor, and you will still be able to follow most of this tutorial. We will use Visual Studio Community since it's free, quick to install and easy to use. Besides, using a good IDE will make a lot of things faster in the long run.

Download Visual Studio Community

So, to get started with this tutorial, go ahead and download Visual Studio Community from visualstudio.com. Here's a direct link to the download page:

https://www.visualstudio.com/downloads/

As soon as you have downloaded and installed it, you are ready to proceed with the next articles, where we will create your very first ASP.NET website.

Not using Windows?

Don't worry, there's a version for macOS as well - just follow the link above and be sure to select the version of Visual Studio Community for macOS!


This article has been fully translated into the following languages: Is your preferred language not on the list? Click here to help us translate this article into your language!