Click here to Skip to main content
15,896,063 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Validate name in text box Pin
MathewPV30-Dec-09 18:32
MathewPV30-Dec-09 18:32 
AnswerRe: Validate name in text box Pin
dan!sh 30-Dec-09 18:13
professional dan!sh 30-Dec-09 18:13 
Questionsteps for how to pass parameters to crystal report using text box or dropdownlist using asp.net with c# Pin
developerit30-Dec-09 17:14
developerit30-Dec-09 17:14 
AnswerRe: steps for how to pass parameters to crystal report using text box or dropdownlist using asp.net with c# Pin
nagendrathecoder30-Dec-09 17:41
nagendrathecoder30-Dec-09 17:41 
GeneralRe: steps for how to pass parameters to crystal report using text box or dropdownlist using asp.net with c# Pin
developerit30-Dec-09 20:50
developerit30-Dec-09 20:50 
Questionwhere are SQL server database files located? Pin
Seraph_summer30-Dec-09 9:10
Seraph_summer30-Dec-09 9:10 
AnswerRe: where are SQL server database files located? Pin
Ian McCaul30-Dec-09 9:33
Ian McCaul30-Dec-09 9:33 
AnswerRe: where are SQL server database files located? Pin
Christopher Duncan30-Dec-09 17:11
Christopher Duncan30-Dec-09 17:11 
I'm using the full version so there may be some differences in Express (I'm not familiar with that product). That said, one way to determine where your .mdf / .ldf files for your db are located is to script the database. Right click on the database you've created, select Script Database As from the popup menu.

You may have to follow slightly different steps in Express, but the general idea here is to generate a CREATE DATABASE script. Having done so, you'll notice something along these lines:

CREATE DATABASE [YourDbName] ON PRIMARY
( NAME = N'YourDbName', FILENAME = N'C:\Whatever\The\Path\Is\YourDbName.mdf' , SIZE = 45056KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )...

There's more to the script of course, but the FILENAME portion will show you exactly where the db file lives. Sql Server uses .mdf files for the database, and .ldf for the log. If you want to move it to a new directory, be sure to move both files.

Hope this helps -


Questionpassing parameters to crystal report in asp.net with c# Pin
developerit30-Dec-09 4:24
developerit30-Dec-09 4:24 
AnswerRe: passing parameters to crystal report in asp.net with c# Pin
Abhishek Sur30-Dec-09 4:45
professionalAbhishek Sur30-Dec-09 4:45 
QuestionInsertion Problem into Database Pin
Zafar A khan 30-Dec-09 3:19
professionalZafar A khan 30-Dec-09 3:19 
AnswerRe: Insertion Problem into Database Pin
Abhishek Sur30-Dec-09 4:42
professionalAbhishek Sur30-Dec-09 4:42 
GeneralRe: Insertion Problem into Database Pin
Zafar A khan 30-Dec-09 5:00
professionalZafar A khan 30-Dec-09 5:00 
GeneralRe: Insertion Problem into Database [modified] Pin
sri_346430-Dec-09 6:37
sri_346430-Dec-09 6:37 
AnswerRe: Insertion Problem into Database Pin
Venkatesh Mookkan30-Dec-09 15:34
Venkatesh Mookkan30-Dec-09 15:34 
QuestionCITRIX Pin
Sebastian T Xavier30-Dec-09 1:22
Sebastian T Xavier30-Dec-09 1:22 
AnswerRe: CITRIX Pin
Abhijit Jana30-Dec-09 2:26
professionalAbhijit Jana30-Dec-09 2:26 
GeneralRe: CITRIX Pin
Sebastian T Xavier30-Dec-09 2:51
Sebastian T Xavier30-Dec-09 2:51 
GeneralRe: CITRIX Pin
Abhijit Jana30-Dec-09 17:45
professionalAbhijit Jana30-Dec-09 17:45 
QuestionHow to call the WSDL file in ASp.Net 3.5 Pin
somagunasekaran30-Dec-09 1:08
somagunasekaran30-Dec-09 1:08 
AnswerRe: How to call the WSDL file in ASp.Net 3.5 Pin
Abhijit Jana30-Dec-09 2:18
professionalAbhijit Jana30-Dec-09 2:18 
QuestionOpening new window using shortcut key Pin
Karan_TN30-Dec-09 0:54
Karan_TN30-Dec-09 0:54 
AnswerRe: Opening new window using shortcut key Pin
m-khansari30-Dec-09 20:09
m-khansari30-Dec-09 20:09 
GeneralRe: Opening new window using shortcut key Pin
Karan_TN31-Dec-09 0:13
Karan_TN31-Dec-09 0:13 
GeneralRe: Opening new window using shortcut key Pin
m-khansari1-Jan-10 18:21
m-khansari1-Jan-10 18:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.