Tarik さんのプロフィールTour In Developer Lifeブログリストつながり ツール ヘルプ

ブログ


Free Microsoft Web Expresssion Products Trainning Vedios

Always Microsoft Presents Free Training Videos ,Starter Kits and Tutorials For Their Products Developers
Here is a Link To Many Training Videos Concerned With Microsoft Web Expression And ASP.NET 2.0
Microsoft Web Expression Training Videos

* Microsoft Web Expression is a professional design tool to create modern, standards-based sites that deliver superior quality on the Web
Microsoft Web Studio Home Page

Microsoft Expression Web

Today When I Was Visiting Microsoft I Noticed They Are Announcing New Product Called Microsoft Expression Web , The MEW as I Name The Product Targeting Web Designers Who Like To Extend Their Proficiency Building Web Sites Meet The Standards
You Can Discover More About The MEW Through :
 
 
Before Downloading The MEW Free Trial You Many Like To Check The System Requirements First
 
I Hope To Find Interested People Who Would Like To Share Us About Their Experience With The Microsoft Web Expression
 

Global Connection For Web Application

Looking For Performance On The Web , You Do Not Need To Open and Close and ReOpen Connection Each Time You Need To Work With Data
I Have Found So Many Developers Fall In This Rabbit Hole

Ok Can We Go Step By Step Here To Create Global Connection On The Application Level


Step 1 : Put Connection String In Web.Config , Put The Follwing Code In Web.Config File

<appSettings>
<add key="NorthwindCN_Str" value="Data Source=www\dev;Initial Catalog=Northwind;Integrated Security=true;"></add>
</appSettings>

Step 2 : In Global.asax File Make Public Shared Connection Variable

Public Shared CN As New SqlConnection
Private CN_Str As String

Step 3 : Read Connection String From Web.Config and Open Connection

Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)

' Fires when the application is started
CN_Str = ConfigurationSettings.AppSettings.Get("NorthwindCN_Str")
CN.ConnectionString = CN_Str
CN.Open()

End Sub

Step 4 : Using Or Checking Connection Object By The Following Code

Global.CN

How Do I Vedio Series (Web Development Using ASP.NET 2.0)

While I Was Looking For New Features In ASP.NET 2.0 Through Books , I Had To Search For Some Features In MSDN While I Was Searching I Got This Nce Page Providing Vedios About New Features
 
 

Data Controls In ASP.NET 2.0

While I Was Working I Found My Self In a Situation Where I Need To Deal With ASP.NET 2.0 , I Feel Not Comfortable With Web Development And All Around State Management
Whatever This Is a Task and I Shall Do It , I Needed To Deal Quickly With Editable Grid In ASP.NET 2.0 , I was Surprised To Found That ASP.NET Data Controls Have Richness In That , I Shall Leave You With Those Links To Find Out Your Selves


ASP.NET Data Controls Quickstart Tutorials

GridView Examples for ASP.NET 2.0