C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Reviews   Communities   Interview   Jobs   Projects   Training   Your Ad Here    
Silverlight Games | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Polls | Revenue Sharing | Lobby | Gift Shop |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...






Resources » Code Snippets » General »

Connection With The MS-Access DataBase


Posted Date: 09 Oct 2008    Resource Type: Code Snippets    Category: General
Author: Miss Meetu ChoudharyMember Level: Diamond    
Rating: 1 out of 5Points: 10



To connect with the MS-Access Database it is simple when we work offline but when we make our site live we come across many problems.

So I will suggest that we should make use of global.asax to store our connection string instead of webconfig or any other place.

A small example is shown here

I have eliminated the angular bracket of script tag to display the Code. Sorry for the inconvenience.


<%@ Application Language="C#" %>

script runat="server">

void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup

}

void Application_End(object sender, EventArgs e)
{
// Code that runs on application shutdown

}

void Application_Error(object sender, EventArgs e)
{
// Code that runs when an unhandled error occurs


}

void Session_Start(object sender, EventArgs e)
{
// Code that runs when a new session is started

Session.Add("string", "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath("~") + "\\App_Data\\UCB.mdb");
Session.Add("login", "false");
Session.Add("Operation","");

}

void Session_End(object sender, EventArgs e)
{
// 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.

}

/script>



--
Thanks and Regards
Meetu Choudhary

Attachments

  • Global.asax (21722-91011-Global.asax)



  • Responses


    No responses found. Be the first to respond and make money from revenue sharing program.

    Feedbacks      
    Popular Tags   What are tags ?   Search Tags  
    Sign In to add tags.
    Connectionstring for ms access  .  Connection With The MS Access DataBase  .  Connect to ms access  .  

    Post Feedback


    This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
    You must Sign In to post a response.
    Next Resource: Reading value from App.Config C# Windows Application - Winforms
    Previous Resource: Use of Case in Sql Server
    Return to Discussion Resource Index
    Post New Resource
    Category: General


    Post resources and earn money!
     
    Related Resources



    dotNet Slackers

    About Us    Contact Us    Privacy Policy    Terms Of Use