Questions tagged [aspnetdb]

104 questions
7
votes
5 answers

how to unlock an ASPNETDB user account after bad password count lockout?

i'm new and using the login control with the ASPNETDB visual studio generated user database i set a maximum bad password count of 5 in web.config and tested to the point that an account was locked out. i am however unable to figure out how to unlock…
korben
  • 71
  • 1
  • 2
4
votes
1 answer

ASPNETDB management tools

Is there any tools to manage deployed ASP.NET application's aspnetdb.mdf file similar to Visual Studio's WSAT ("hummer-globe" button)? Installations of the Visual Studio and SQL Managment tools on the server are not possible.
LicenseQ
  • 1,721
  • 1
  • 15
  • 21
4
votes
2 answers

Transaction log is full (due to NOTHING)... but this database is in simple recovery mode

I'm supporting an antedeluvian webapp (soon to be retired) that still uses "aspnetdb" for its auth system. I was doing some work in prep for its retirement on my test environment, when I found my test server complaining with the following…
Pxtl
  • 880
  • 8
  • 18
4
votes
4 answers

Connection String to Local DB file is not working

connectionString="AttachDbFilename=C:\Documents and Settings\nmartin\My Documents\PS_Upload\TimeTrack\src\TimeTracker\TimeTrack\App_Data\ASPNETDB.MDF;Integrated Security=True; User Instance=True" providerName="System.Data.SqlClient" /> This is…
Nick
4
votes
2 answers

Merge aspnetdb.mdf with my own database (automatically generated)

I've searched the internet thoroughly but couldn't find a clear answer to the problem. I have got the aspnet.db database. But i want to add my own tables and data to this database. If i try to connect to it with the connection string:
Cissmayazz
  • 2,195
  • 3
  • 15
  • 10
3
votes
3 answers

Multiple applications using the same application services

How can I have multiple applications, written for the same client sharing the same application services (is that the name of that database that holds membership?). I'm thinking about creating an aspnetdb for each client and use it on every system…
programad
  • 1,291
  • 3
  • 19
  • 38
3
votes
4 answers

How to edit users in ASPNETDB.MDF

Hey I am wondering how I can edit users stored in ASPNETDB.MDF I am using ASP.Net 4 / Visual Studio / SQL Server. I can set a gridview to show the users, but cannot directly edit them. I will be wanting to deploy this, and then assign permissions to…
noscript
  • 77
  • 2
  • 10
3
votes
2 answers

Changing ASPNETDB name

Is there anyway to change the ASPNETDB and also using SQLExpress (2005) user instance ? I have changed my web.config's connectin string to
Hashem
3
votes
2 answers

edmx populating mdf?

when i 'generate database from model' in an edmx file it asks for a datasource and generates a sql file and adds the data source to the app.config if i choose sqlserver as the source it works fine and i can either use an existing database or create…
Rakka Rage
  • 15,941
  • 8
  • 33
  • 45
3
votes
3 answers

My "data default (getdate())", it doesn't work

I'm trying to insert in my SQL Server table the current date. My table includes 3 files: CREATE TABLE [dbo].[MyTable] ( [Id] INT IDENTITY (1, 1) NOT NULL, [Name] NVARCHAR (50) NOT NULL, [Date] DATE CONSTRAINT…
user4852783
3
votes
1 answer

Merge aspnetdb database with another one?

I have an aspnetdb and I have created another aspnetdb for another website, but instead of starting from scratch, I would like to import all the data from the one that has users and other data into the new aspnetdb. Is there a way to do this? Are…
Xaisoft
  • 45,655
  • 87
  • 279
  • 432
3
votes
2 answers

How to use aspnetdb database with an asp.net website

I have created a website using asp.net 3.5. And now I have added member support to it using Membership API and aspnetdb database. And I have done all testing on my local machine. Now, what issue needs to be considered with respect to aspnetdb while…
pokrate
  • 3,954
  • 7
  • 30
  • 36
2
votes
1 answer

How to get the aspnetdb username in parameter when i'm binding data

I'm wondering how to access the username of the current user login on the site, i want to bind that value in my datalist. I'm using the default ASPNETDB database. When you are doing it in C# code you can just write ` User.Identity.Name But how do i…
Icy Creature
  • 1,875
  • 2
  • 28
  • 53
2
votes
2 answers

unable to access ASPNETDB.mdf

I added the reference to the static ROLES class below to assign the role to people that JOIN the website. I tested the code and the application hung when I pressed the button on the JOIN ASP.Net control. Of course, I immediately tried debug to…
Susan
  • 1,822
  • 8
  • 47
  • 69
2
votes
1 answer

ASP.net aspnetdb.mdf connection string

After configuring the Membership Provider, I noticed that there is no connection string for ASPNETDB.mdf in my web.config. Shouldn't there be a connection string? What is the appropriate syntax? Thanks in advance!
Susan
  • 1,822
  • 8
  • 47
  • 69
1
2 3 4 5 6 7