Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
617 views

Asp.net mvc can not work without App_Data

I'm using a custom security (no membership provider). After the user logs in ... a folder "App_Data" with ASPNETDB.MDF gets automatically created ... on my local machine. If I deploy this to a remote ...
4
votes
3answers
892 views

Why are certain files not published in the App_Data folder?

I'm using Visual Studion 2008 to build and deploy a webservice project. I've added a bunch of files to the App_Data folder: some xml, some plain text and 2 pdf's. All these files are included in the ...
3
votes
4answers
2k views

Images that are in App_Data folder not shown in browser

When I set image URL property to asp image control that is in App_Data folder, image is showing in page design view but not in browser. <form id="form1" runat="server"> <div> ...
2
votes
2answers
966 views

Facebook webforms app get app_data querystring

How do i get app_data querystring from a Facebook webforms app? I want to be able to send some info in the querystring so i can display different home screen on my app. The app is sittin in a page ...
2
votes
2answers
817 views

how to use an mdf in App_Data with shared hosting

If I create a website that uses an mdf in App_Data with the connection string: Server=.\SQLExpress;AttachDbFilename=|DataDirectory|mydbfile.mdf;Database=dbname; Trusted_Connection=Yes; what do I ...
1
vote
2answers
67 views

How to install a file in app data in setup project (C#)

I want to install my database to a separate folder (@ C:\Users\User1\AppData\Roaming\Company1\database.mdb) I'm using a C# setup project. How can I do it?
1
vote
1answer
59 views

in the default ASP.NET project created using VS2010, where is |DataDirectory| set?

I see the following connection string in the default web.config: connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true" ...
1
vote
2answers
75 views

Get Manufacturer Name from Setup

In .NET, when creating a setup project the application files are stored in a path similar to this: C:\Program Files\[Manufacturer]\[Product Name] I am generating a folder inside of the common ...
1
vote
3answers
65 views

Handling of android app uninstallation

I have created some files through my android application. I want to remove these files when the application is removed from the device. How can I get it done. Any help will be appreciated.. Thanks in ...
1
vote
1answer
228 views

Asp.net app_data folder contains db

I am using VS 2005 I am new to asp.net i have a project created in asp.net c# which is using sql server express edition local database. there is a app_data folder there is *.mdf file inside i can ...
1
vote
1answer
1k views

Getting Access denied trying to read a file in App_Data in a ASP.NET project - Any pointers?

I've an XML file stored in App_Data which is only used to read some configuration on startup. When I attempt to open it within my code, I get an Access to the path ... is denied message. I'm having ...
0
votes
2answers
77 views

Remove the app_data from the signed request

When i call my fb-app with a GET request, like "?app_data=1", the variable is in the signed request. Ok, so far. But, when i click to another link in my fb-app, the app_data is still in the signed ...
0
votes
2answers
94 views

Cannot access my class in WebMatrix (razor) App_Data folder

I have tried every solution I have found on stackoverflow but I cannot seem to access a class I created in the App_Data folder. If I have this class (only showing part of the class): public class ...
0
votes
3answers
92 views

ASP.Net - App_Data & App_Code folders?

What is the point of having App_code & App_data folders? Why doesn't my objectDataSource detect classes unless files are in App_Code? Please provide as much detail as you can, I'm new to ASP.Net ...
0
votes
1answer
130 views

MVC Code First: App_Data Folder Not Being Created

I'm using the MVC Code First approach to create a SQL Compact database (from WebConfig: data source=|DataDirectory|MailBoxDB.sdf). The .sdf file should get created automatically, and it does if I ...
0
votes
0answers
28 views

error in sending login page

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that ...
0
votes
2answers
215 views

Access denied creating App_Data subdirectory

I've created a user from the ASP.NET Configuration I'm using sql server but I haven't created any database for membership. I did add this to the config file: <authentication mode="Forms"> ...
0
votes
1answer
23 views

How to hanlde list data that doesn't belong to a model an isn't a model by its own in rails?

In my rails project I have diferent list of data that I have to mantain with CRUD operations and each list doesn't deserve a model or an entire scaffolding to maitain it, what's the best way to handle ...
0
votes
1answer
243 views

Create App_Data and register Excel application on ASP.NET deployment? (IIS7)

I am deploying an ASP.NET MVC3 application in IIS7. I already deployed other applications but they never made use of the App_Data folder or any additional component such as the Interop library. I ...
0
votes
1answer
339 views

C# App_Data class not inherited by aspx - inherits attribute question

I have been trying to figure this out for a while now and even though there are plenty of Google results for the error message I receive the solution eludes me. I think that I am doing what I am ...
0
votes
2answers
575 views

Security of APP_Data Folder in ASP.NET

My Microsoft Access DB file is in APP_DATA folder. my server is Windows 2003 and I like to know how is the best way to protect this file. so which one is safer ? ./wwwroot/App_data/Database.mdb or ...
0
votes
3answers
595 views

ASP.NET app wont share database with Sql Server Management Studio Express

I have an ASP.NET 3.5 app with a SQL 2005 Express .mdf database file in its App_Data folder. Lets call that Foo.mdf. On its own the ASP.NET app can connect to the database with no problems. So far so ...
0
votes
2answers
433 views

Sql Express DB in APP_DATA when using IIS Virtual Directory

I want to setup a website that uses an SQL Express .mdf file located in the APP_DATA folder. when I create the site as a file-system website, it connects to the database file without issue... however ...
0
votes
2answers
287 views

Asp.net app_data connect db

I am having sql server express edition local database in app_data folder. How can i connect SQL Server Management Studio Expres with that db to execute sql scripts ?
0
votes
2answers
1k views

Access an XML file in /App_Data folder of my WCF service?

How do I access an XML file I added to /App_Data folder in my WCF Service?
0
votes
2answers
729 views

Visual Studion 2008 App_Data defaults

Is it possible to use the App_Data folder in conjunction with SQL Server 2005? When I try it specifies Express even though I have changed the Tools>Options>Database>Data Connections to the correct ...
0
votes
2answers
582 views

Deploy doesn't copy app_data's subfolders

My web project has an app_data folder with subfolders. When I deploy my project from visual studio2008 (r-click, deploy, include app_data ticked) it only copies files from the app_data root, not it's ...