This is my VB code for global.asax :- \[code\]<%@ Application Language="VB"><script runat="server">Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) ' Code that runs on application startup Application("CS") = "server=myServer; user id=myUser; password=MyPaas; database=myData; pooling=true"End SubSub Application_End(ByVal sender As Object, ByVal e As EventArgs) ' Code that runs on application shutdown Application("CS") = ""End SubSub Application_Error(ByVal sender As Object, ByVal e As EventArgs) ' Code that runs when an unhandled error occursEnd SubSub Session_Start(ByVal sender As Object, ByVal e As EventArgs) ' Code that runs when a new session is startedEnd SubSub Session_End(ByVal sender As Object, ByVal e As EventArgs) ' Code that runs when a session ends. ' Note: The Session_End event is raised only when the sessionstate mode ' is set to InProc in the Web.config file. If session mode is set to StateServer ' or SQLServer, the event is not raised.End Sub</script>\[/code\]I call this value in VB as :- Dim objConn As New SqlConnection(Application("CS"))Then how its call in C# ASP.NET