473,396 Members | 1,760 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

What is ASPNETDB.MDF used for?

In 2.0 what is ASPNETDB.MDF used for? I'm not using any type of security
for this site. Do I need this when deploying?
Jan 6 '06 #1
4 8588
I've not used .NET 2.0 and not studied any indepth things of it, but I
suppose the Access DB could be used for storing ASP.NET Sessions just as in
..NET 1.1?

In .NET 1.1, if you run
<Drive>:\systemroot\Microsoft.NET\Framework\v1.1.4 322\InstallSqlState.sql,
you can create an Database for maintaining SessionState in SQLServer mode.

ms-help://MS.MSDNQTR.2005JUL.1033/cpgenref/html/gngrfSessionstateSection.htm

"VB Programmer" <do**@emailme.com> ¼¶¼g©ó¶l¥ó·s»D:%2***************@TK2MSFTNGP14.phx. gbl...
In 2.0 what is ASPNETDB.MDF used for? I'm not using any type of security
for this site. Do I need this when deploying?

Jan 6 '06 #2
It is created automatically when you implement Profiles, usually by doing
into the Web Site Administration Tool. It holds the membership data.

http://msdn2.microsoft.com/en-us/lib...US,VS.80).aspx


"VB Programmer" <do**@emailme.com> wrote in message
news:%2***************@TK2MSFTNGP14.phx.gbl...
In 2.0 what is ASPNETDB.MDF used for? I'm not using any type of security
for this site. Do I need this when deploying?

Jan 6 '06 #3
If I'm not using profiles/membersips/etc do I need it on my public server?

"Ken Cox - Microsoft MVP" <BA**********@hotmail.com> wrote in message
news:e1*************@TK2MSFTNGP12.phx.gbl...
It is created automatically when you implement Profiles, usually by doing
into the Web Site Administration Tool. It holds the membership data.

http://msdn2.microsoft.com/en-us/lib...US,VS.80).aspx


"VB Programmer" <do**@emailme.com> wrote in message
news:%2***************@TK2MSFTNGP14.phx.gbl...
In 2.0 what is ASPNETDB.MDF used for? I'm not using any type of security
for this site. Do I need this when deploying?


Jan 6 '06 #4
Access DB ??
a MDF is a sql server data file , :-) Access `s Big brother

To answer the question

if you do not or not plan to use the new users , roles management you do not
need it
by the way if you plan to investigate / use it
you should also meet the following requirments to get it working :
SQL Server 2005 Express on the server and having the correct file
permissions on the App_Code folder for NETWORK SERVICE and ASPNET
regards

Michel Posseth [MCP]
"Lau Lei Cheong" <le****@yehoo.com.hk> wrote in message
news:Op**************@TK2MSFTNGP12.phx.gbl... I've not used .NET 2.0 and not studied any indepth things of it, but I
suppose the Access DB could be used for storing ASP.NET Sessions just as
in .NET 1.1?

In .NET 1.1, if you run
<Drive>:\systemroot\Microsoft.NET\Framework\v1.1.4 322\InstallSqlState.sql,
you can create an Database for maintaining SessionState in SQLServer mode.

ms-help://MS.MSDNQTR.2005JUL.1033/cpgenref/html/gngrfSessionstateSection.htm

"VB Programmer" <do**@emailme.com>
¼¶¼g©ó¶l¥ó·s»D:%2***************@TK2MSFTNGP14.phx. gbl...
In 2.0 what is ASPNETDB.MDF used for? I'm not using any type of security
for this site. Do I need this when deploying?


Jan 6 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: VB Programmer | last post by:
If you want to store custom tables in ASP.NET 2.0, such as Products, Companies, Shopping Carts, etc... where is the standard place to put the tables? I want to link it to the user/membership...
2
by: te goody | last post by:
Problem summary: Web Site Admin Tool is not generating the application services database (aspnetdb.mdf); i.e. The DB is not found under the app_data directory. The Question: What configuration...
0
by: RAM | last post by:
Hello, I have written simple ASP.NET application with logging in. I need to open ASPNETDB database to read some information which is not available using class library (custom table). I have...
1
by: 3Dfelix | last post by:
Problems when uploading ASPNETDB.MDF to production server Hi all, I'm a little web with a login page and aspnetdb.mdf file as data base for users. I've done it on local server, with VS2005 and...
4
by: R.A.M. | last post by:
Hello, I am learning ASP.NET. In web application I am programming now I decided to add a table "Users" to aspnetdb database (with extra data about users) and a trigger AFTER UPDATE of...
3
by: GaryDean | last post by:
I noticed that my asp.net project contains a 10 meg ASPNETDB.MDF database in the App_data folder. I never intentionally put it there, have never ran regsql.exe. Reading back on my logs it got...
3
by: R.A.M. | last post by:
Hello, I have created ASP.NET application with aspnetdb database. In the following codeI have an error: System.Security.Principal.IPrincipal user = HttpContext.Current.User; if...
6
by: Mr. X. | last post by:
I have visual studio 2008. My site has a plesk on it. I want to deploy my project, and save it on the host machine. Looking for solution for folowings, please : 1st solution =======...
6
by: Mr. X. | last post by:
Hello. How can I create aspnetdb from scratch ? (I want a script that create all table, views, etc... on that database). Thanks :)
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.