Click here to Skip to main content
Licence CPOL
First Posted 20 Sep 2007
Views 18,352
Downloads 157
Bookmarked 18 times

ASP.NET session state store provider for MySQL

By | 18 Oct 2007 | Article
A brief description on how to set-up MySQL as session state store for ASP.NET.
 
Part of The SQL Zone sponsored by
See Also

Introduction

This article describes how to set-up an ASP.NET project in order to use MySQL as its session state store provider.

Using the code

Looking on the web, I was not able to find a suitable solution that uses MySQL as its session state store. It may certainly be possible that there is already a better solution available (if so, please do not hesitate to contact me). However, I was able to find a sample session state store provider using MS Access. That's it! Port it to MySQL... and that's what I did.

But, let's do it step by step. The list below gives you an idea of what I did in order to get it to work:

  1. Downloaded the sample session state store provider for MS Access from MSDN.
  2. Downloaded the .NET Connector (using version 5.0.7) from MySQL.
  3. Ported the sample code provided by Microsoft for use with MySQL (the zipped source code can be found here).
  4. Adjusted the Web.config accordingly:
  5. <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> 
      <connectionStrings> 
        <add name="MySqlSessionServices" 
          connectionString="Database=<name of database>; 
                Data Source=<host>; User Id=<login>; Password=<password>"/> 
      </connectionStrings> 
      <system.web> 
        <sessionState cookieless="false" regenerateExpiredSessionId="true" 
                   mode="Custom" customProvider="MySqlSessionProvider"> 
          <providers> 
            <add name="MySqlSessionProvider" 
               type="Samples.AspNet.Session.MySqlSessionStateStore" 
               connectionStringName="MySqlSessionServices" 
               writeExceptionsToEventLog="false"/> 
          </providers> 
        </sessionState>
      </system.web>
    </configuration>

You can check it out at www.kimpel.com ... it works like a charm.

Please do not hesitate to contact me if you have any questions and/or comments.

History

  • 2007-09-20: Initial version.
  • 2007-10-17: Updated link to sources.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Harry Kimpel

Web Developer

Germany Germany

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionplz brack main code Pinmembersaqibali21198:02 18 Aug '11  
GeneralGreat! [modified] Pinmemberdevjunkie0:19 11 Jan '09  
GeneralBug... [modified] PinmemberJohannes7523:44 30 Apr '08  
QuestionWill this work for ASP.NET 1.1? Pinmemberajdiaz6:03 3 Jan '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120528.1 | Last Updated 18 Oct 2007
Article Copyright 2007 by Harry Kimpel
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid