• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Anybody know anything about ASP/ASP.NET and MSSQL Database?

forlife

New Member
Does anybody know anything about ASP/ASP.NET and MSSQL Databases?

How do i create a Database?
How can i view my database? Lets say people sign up as a member now i wanna view my database how do i do that?
 
Last edited:
Are you running from your own server or a hosting account?

Well, either way you can create a script to create databse with tables for you. And then another script that will display all values in the DB.
 
There are many ways. You can create your own queries and stuff. Are you running SQL Server on your machine or remotely. Basically you want to create a query like this either way
Connect to your DB and
PHP:
SELECT * FROM tablename

You can modify that etc
 
Back
Top