Forum Moderators: open

Message Too Old, No Replies

Some questions about ASP.net

         

imeatingfish

1:13 pm on Jan 18, 2010 (gmt 0)

10+ Year Member



Hello,

first of all: I'm not new in the world of web developers. For years I'm using PHP, started switching over to Frameworks like CakePHP but everytime I came back to my old lovely PHP. NOW it's end with that #*$!. I wanna start with ASP.net, looked some vids and started to explore it a little bit. It was simple to code a login system with the toolbox. When I'm using the login/membership profiles, where the hell ASP.net stores the data? How can I store it in the SQL Server Database to access it later? Example: After logging in I wanna show the username of the logged in person.

Thanks for your tips.

Ah, a second question: How did you started with ASP.net? Did you know some good tutorial-sites for it?

greetings

marcel

3:00 pm on Jan 18, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi imeatingfish, and Welcome to WebmasterWorld [webmasterworld.com]

Probably the best resource for learning ASP.Net is... asp.net :)
[asp.net...]

To find your Membership tables, have a look in the App_Data folder of your project, you should find a SQLExpress database in there.

To store this in your own database you can use the aspnet_regsql.exe [msdn.microsoft.com] tool, which prepares the database with the required tables and stored procedures for using Membership. You can then adapt the web.config file to point to the new DB.

Here is a great tutorial on using the ASP.Net membership:
[4guysfromrolla.com...]

imeatingfish

7:20 pm on Jan 18, 2010 (gmt 0)

10+ Year Member



Thanks marcel for your help. It worked...cool :)