Banner Ad

Monday, June 25, 2012

First ASP .Net Application : The Solution

By Francis   Posted at   8:30 AM   VB.Net

In my previous post, I have explained how to add a VB.Net Web Solution. In this article I'm going to -provide the solution. If you want to see my previous post click here.

Monday, January 30, 2012

First ASP .Net Application

By Francis   Posted at   12:48 PM   No comments

In this first article, I’m going to take a simple program and explain it in detail. As I told already, I’m going to explain the concepts using the language VB.Net. So the coding snippets in VB.Net only.

So this is the first tutorial, I took a simple problem which cover almost everything ( I meant, it covers ADO.Net, SQL Server Connection etc).

The Problem:

In a web form (don’t confuse what is a web form!!!) I’m going to add the 2 dropdown namely:

1) Country Dropdown

2) State Dropdown

The Country Drop down contains a list of countries and the state contains list of states. Whenever the user select the country from country drop down, the respective states which is located on that Country will be loaded in to the State drop down.

Create A Project in Visual Studio:

Before that I will explain step by step how to add a project ASP.Net in Visual Studio 2010.

Step 1:

Open Visual Studio 2010. The Visual studio startup screen look like this.

VisualStudio-Startup-Screen

Step 2:

Click on “New Project”, which opens the following screen. Please take a close look in the highlighted areas.

VisualStudio-CreateNewProject

I have choosen, Visual Basic as a languge, “ASP.Net Web Application” as Project Template and "Target Framework version as 3.5.

VB-ASPDotNet-Application

Step 3:

After clicking on the “OK” button in the above screen. Solution file named as  “AllInOne” will be loaded in Visual Studio.

ASPDotNet-Application

Step 4:

In the right hand side a little window called as “Solution Explorer”, which listed all the files by clicking the “Show All Files” icon. (Take a look at the highlighted area).

Solution-Explorer

 

ShowAllFiles-SolutionExplorer

So in this tutorial, I explained how to add an Visual Studio project. In the next tutorial, I will explain the concepts.

Happy Programming!!!!

Monday, January 2, 2012

Beginning ASP.Net

By Francis   Posted at   11:49 AM   .Net. ASP.Net No comments
How to begin ASP.Net without these tools? So before that you need the following:
1. Visual Studio 2005 (OR) 2008 (OR) 2010
2. ASP.Net 2.0/3.0/3.5
If you want to connect databases like SQL Server then you need to install SQL Server also.
You can download all the above in the following link: http://www.asp.net/downloads
In the above link, you can only download express editions of Visual Studio 2010 and SQL Server Database.

Sunday, January 1, 2012

IIS – An Introduction

By Francis   Posted at   6:31 AM   IIS No comments
In my last post I gave a small intro about Visual Studio. This time I come with the small introduction about IIS (Internet information Services), which is formerly called as Internet Information Server. Of course, it’s also Microsoft implementation. IIS is the second web server, used next to Appache Web server. IIS is an integral part of Windows, which means IIS comes as a built in package. By default, the IIS feature not installed in Windows OS, user must install the necessary components. As it name implies, it is a Web server. A web server receives the request/requests and serves the output to the client. Typically, the output is in HTML format.
Connect with Us