Click here to Skip to main content
15,921,577 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: a Problem Reporting with Word Document Pin
Estys31-Dec-09 2:05
Estys31-Dec-09 2:05 
Questionahmad abdulkader Pin
ahmad000930-Dec-09 22:41
ahmad000930-Dec-09 22:41 
QuestionDate Slider Pin
Subin Mavunkal30-Dec-09 22:26
Subin Mavunkal30-Dec-09 22:26 
GeneralRe: Date Slider Pin
J a a n s31-Dec-09 1:30
professionalJ a a n s31-Dec-09 1:30 
QuestionUpdating a rpeater Pin
benams30-Dec-09 22:15
benams30-Dec-09 22:15 
AnswerRe: Updating a rpeater Pin
Abhijit Jana30-Dec-09 22:16
professionalAbhijit Jana30-Dec-09 22:16 
QuestionValidate name in text box Pin
MathewPV30-Dec-09 17:57
MathewPV30-Dec-09 17:57 
AnswerRe: Validate name in text box Pin
nagendrathecoder30-Dec-09 18:02
nagendrathecoder30-Dec-09 18:02 
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 

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.