Installing ASP.Net SQL Session State on IIS7

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Robin9876

    Installing ASP.Net SQL Session State on IIS7

    I have found to configure ASP.Net on IIS7 to use SQL Session State you
    need to run aspnet_regsql.e xe
    Looking at the help file it appears that the connection string would
    need permissions to create a database and objects on the server.

    How can you create the SQL Session State database and then use a
    different account for ASP.Net to use to add/maintain the session state
    information within it?
  • =?Utf-8?B?YnJ1Y2UgYmFya2Vy?=

    #2
    RE: Installing ASP.Net SQL Session State on IIS7

    yes. but you can create the database first if you want and use any name. you
    may need to add the aspnet user.

    you can also create the database in dev, and reverse engineer it with sql
    workbench or a vs database project and create your own deploy scripts.


    -- bruce (sqlwork.com)


    "Robin9876" wrote:
    I have found to configure ASP.Net on IIS7 to use SQL Session State you
    need to run aspnet_regsql.e xe
    Looking at the help file it appears that the connection string would
    need permissions to create a database and objects on the server.
    >
    How can you create the SQL Session State database and then use a
    different account for ASP.Net to use to add/maintain the session state
    information within it?
    >

    Comment

    Working...