Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

26
votes
8answers
6k views

How would you sprinkle-in ASP.Net MVC into an existing Web Site Project?

I have a legacy (haha) ASP.Net Webforms Web Site Project in Visual Studio 2008 SP1, that I would like to gradually introduce some MVC functionality into. Most of the information I can locate on how ...
13
votes
4answers
1k views

Unit Testing ASP.net Web Site Project code stored in App_Code

I have an ASP.net Web Site Project (.net 3.5). Currently all of the non-code behind code files (including Linq2Sql stuff, data contexts, business logic, extension methods, etc) are located in the ...
4
votes
2answers
84 views

Migrate a VS project to a web site

If you started developing as a project, how difficult is it to migrate into a web site development process?
4
votes
3answers
3k views

Setting static port number on Visual Studio Dev Server with a WebSite project

I have a WebSite project in Visual Studio 2008 (not a Web Application project!) How do I set the ASP.NET Development startup port to a static port in a WebSite project?
3
votes
5answers
191 views

Cannot Parse .aspx during WAP Conversion

I've copied over the Web Site files to a new WAP project. Made sure that it compiles and it does. The problem I have is that it can't parse the .aspx pages when I perform a convert to WAP. The ...
3
votes
3answers
114 views

Is it possible for a website project to reference a signed assembly in visual studio?

I'm aware of the following two different types of web projects in Visual Studio 2008: Website project Web application project A web application project can reference a signed assembly as long as ...
3
votes
2answers
94 views

ASP.NET: What deployment options do I have?

I'll soon be managing a fleet of ASP.NET webservers... What are the technical limitations with deploying an ASP.NET webserver? Can I just copy the file(s) over, restart the website, and I'm good to ...
3
votes
4answers
399 views

Deploying a Pre Compiled Web Site Project

So I have a website project, which I precompile when I publish. I have a question, when I need to make a small change to the deployed site, do I have to rebuild, re-publish and deploy the entire ...
3
votes
6answers
1k views

Are ASP.NET Web Site projects inherently slow at compiling, or could I have deeper issues?

I've been working on a legacy ASP.NET Web Site (versus a Web Application) project at a client for some time now, and its slow compile time has me wondering: Are web site projects known to be slow(er) ...
3
votes
2answers
331 views

Why won't my Website Project adapt to .NET 3.5?

We've converted our solution from .NET 2.0 to .NET 3.5. All projects converted just fine except for the Website Project, which still doesn't understand what I mean when using 'var' and the like. I've ...
2
votes
2answers
24 views

Best tech/toolset for implementing a Google Shopping-like website?

As a means of learning some web development, I'd like to start a project that will basically aggregate product pricing data similar to Google Shopping. With that being said, I have no idea what ...
2
votes
1answer
66 views

extending asp.net control in the website project

when I extend an asp.net control and place the extended control class in, say, Applicaton_code (without specifying the namespace) how do i register the control to use it on a webpage? what assembly ...
2
votes
2answers
420 views

Using web.debug.config/web.release.config in a Website project?

I have been reading about web.config transformation feature of VS2010 (web.debug.config/web.release.config), and all of them talk about WebApplication projects. What about WebSite projects? Can I use ...
2
votes
2answers
110 views

Visual Studio configures my local IIS website as an ASP.NET website

We are using Visual Studio 2008 on IIS 7, and on some machines we are having trouble getting Visual Studio to recognize our website as an IIS website. On most machines it is configured properly, ...
2
votes
1answer
340 views

Visual Studio 2010 memory usage during web site project publish

I've got an Asp.Net web site project that is causing increasingly frustrating memory issues during publish. Visual Studio operates reasonably well during normal work, and even the build stage is ...
2
votes
3answers
283 views

How to publish a full website without compiling and without copying SVN files

Apparently, DNN installations do not like to be precompiled (they won't be able to find any localized strings then). Our installation is safely put in SVN, which means I cannot just copy the whole ...
2
votes
2answers
85 views

How to migrate from BuildProvider to Web Application project?

Currently we have a bunch of web sites (web site projects) that I think should be converted to web application projects. Everybody agrees. But a number of custom BuildProviders are used to generate ...
2
votes
2answers
172 views

.NET security mechanism to restrict access between two Types in the same project?

Question Is there a mechanism in the .NET Framework to hide one custom Type from another without using separate projects/assemblies? I'm not talking about access modifiers to hide members of a Type ...
2
votes
0answers
162 views

Web Site Projects, Project References, and Version Control

I have an ASP.NET Web Site project that used to have it's logic in the App_Code folder. I pulled some of the code into a Class Library project (to allow unit testing) and added a Project Reference. It ...
2
votes
2answers
50 views

How to make maintaince document for a website?

How to make maintenance document for a website? I've created a site using XHTML ,CSS, jQuery etc. it's big site. Now i have to write a maintenance document for a site for if any changes comes in ...
2
votes
1answer
419 views

When does an ASP.NET Website project recompile?

As Maurico and codeka first stated, don't use the default InProc sessions if you don't want your sessions to be affected by website recompiles and application recycles. A list of what causes whole ...
2
votes
2answers
122 views

Why does a web application project in VS2005 offer a 'Convert to Web Application' menu choice

I believe I understand fully the differences between Visual Studio 2005's web site model versus the web application project model that was fully delivered in VS2005 SP1 - but I have run into a ...
2
votes
4answers
329 views

How do I specify the name of the assembly created when publishing an ASP.NET Web Site Project?

The title pretty much says it all. Given a web site project in VS2008 named FooDLL, I would like to be able to specify the name of the assembly that VS2008 spits out when I click "Publish Web Site". ...
2
votes
6answers
288 views

ASP.NET beginner woes with new Web Site

I'm a decently experienced .net developer for the desktop but this is my first stab at using ASP.NET and i'm stumped almost right away. I've used the VS2008 "New Website" wizard and got a simple page ...
1
vote
1answer
56 views

Reuse code from website project in my web application project

Here's the code. I now also get errors in codebehind that a variable already exists and method has identical signature, but I cant find those duplicates anywhere in the code behind. .ASPX <%@ ...
1
vote
1answer
70 views

How to create a WIX installation for ASP.NET WebSites?

I am aware of this tutorials http://wix.tramontana.co.hu/tutorial/getting-started/putting-it-to-use http://www.codeproject.com/KB/install/WixTutorial.aspx ... but I can't find a quick solution for ...
1
vote
1answer
106 views

Can old App_Web.xxxx.dlls affect site behavior?

I have ASP.NET Web Site project that deploys as precompiled to server. After deploy bin folder contains multiple App_Web.xxx.dll files. I know that I can delete old files before deploying new version ...
1
vote
1answer
44 views

Need help for html5 iPhone web apps

Can anyone please provide me some links where i can download some sample iPhone web apps so that i can get a better idea of the same. Please help.
1
vote
3answers
69 views

What must I do with a solution file showing under my web site?

I have just been handed an ASP.NET web site project, without a parent solution. I created a new solution, and added the web site project under the solution, as I am always more comfortable grouping ...
1
vote
2answers
233 views

Exclude files from web site deployment with msbuild

I have a web site project that I deploy using msbuild. In the project there are some files and folders that are needed for the build (e.g. the web.config part replacement files) but that I don't want ...
1
vote
2answers
419 views

Visual Studio 2010 Deploy/Publish a website with Silverlight project

How to deploy/publish a website with Silverlight project in Visual Studio 2010?
1
vote
0answers
30 views

Protecting a website idea [closed]

Feel free to redirect me if there's a forum this would be better suited for, I'm still unfamiliar with the functions of the different forums. I'm going to begin a project soon that requires a lot of ...
1
vote
5answers
199 views

Which framework/CMS to be used

i am a hobby programmer with very little experience in web programming, i devote an average f 20-30 hours a week, but with summers coming i have some free time to experiment and learn. could anyone ...
1
vote
1answer
97 views

How do you define the TRACE compile flag in a ASP.NET Web Site project?

How do you define the TRACE compile flag in a ASP.NET Web Site project? There is no .proj-file and there are no options in any Build-dialogs in Visual Studio that I can find. I'm using Visual Studio ...
1
vote
0answers
115 views

advantages of choosing a web application over a website or vice-versa(in vs2010)

Hey, I've read about the differences here, what I want to know is, Is there any sort of an advantage of choosing one over the other for a large application? (which is predominantly going to be used ...
1
vote
3answers
115 views

ASP.NET Web Site + SQL Backed Session

We are using an ASP.NET web site project with dynamic compilation, and recently moved to a SQL Server backed session state and started getting a strange error. I've figured out what is causing this, ...
1
vote
3answers
212 views

ASP.NET can't reference class

I've moved the CS files out the App_Data folder because I get errors with duplicate builds, one builds at compile time one at run time so I was told to move them out that folder. Two files, ...
1
vote
1answer
147 views

Different config settings for local visual studio build and local IIS build for .NET website projects

We have a fairly large .NET website (not web application) project, which, upon hitting a page on the site, takes about 3 minutes to build after any changes to App_Code or to DLL dependencies. By ...
1
vote
1answer
418 views

Multilanguage asp.net site with aspx in different levels

I've been working in a multilanguage site build with asp.net and visual c#. I'm using Local_resources to get my aspx files in Spanish and english. If a use my aspx in the root of the website the ...
1
vote
4answers
191 views

Popularity: Web Site Projects versus Web Application Projects

I need to create a sample project (for educational purposes) and I'm faced with the choice between Web Site Projects or Web Application Projects. This feels similar to the choice between C# and VB. ...
1
vote
1answer
231 views

Exclude web.config from server when publishing website (not WAP) VS2005

How do I exclude Web.config from server when publishing website (not web application project) in Visual Studio 2005 I can see information how to add setting to the Web.Config but in this instance the ...
1
vote
1answer
377 views

Problem deriving a user control from an abstract base class in website project

In a Visual Studio website, I have created a user control. This control is derived from a class (in App_Code) that is itself derived from System.Web.UI.UserControl. This is an abstract class with an ...
1
vote
3answers
267 views

Pre-compile specific directories in ASP.NET website project

I have an ASP.NET website project which has a mixture of updateable pages and pages that do not change. Is it possible for me to pre-compile certain directories that contain pages/controls that will ...
1
vote
2answers
2k views

How to set platform target for a ASP.NET “web site” project

I keep running into all sorts of nuances between the "web site project" versus "web application project" - here is the latest for me: I've inherited a Visual Studio 2005 solution with several class ...
1
vote
2answers
284 views

What does it Mean “Web Sites give You No Control over Namespaces”?

How do you understand "No control over your namespaces" namespace issue, quoted from, http://reddnet.net/code/asp-net-web-site-vs-web-application-project-part-2/ Here are more background: one of ...
1
vote
3answers
3k views

CS0234 error with System.Linq namespace in ASP.NET

At my company, we have tiered environment for our web applications (development, staging, production). I made a bunch of changes to one of my applications and deployed them to the development ...
1
vote
0answers
895 views

How to manage various ASP.NET Web Site project references and autoupdate

I have a Visual Studio 2008 Web Site project in a solution with a number of other assembly projects. The Web Site project has 4 types of references: Project, BIN, COM interop, and text files. The ...
1
vote
2answers
114 views

How do image hosting sites enforce content policies?

I'm trying to figure out how to best implement a public data hosting service. How do websites that let users upload pictures enforce their terms of service regarding obscene pictures? Do they use ...
1
vote
2answers
145 views

How do you track down dependencies for ASP.NET Web Site?

The dynamic compile-on-the fly approach seems to fall outside the capacity for the typical tools which would extract this kind of information. I know I may be better off converting to a Web ...
1
vote
3answers
326 views

Compile errors after converting to a Web Application Project from a Web Site

I'm trying to convert a Web Site to the Web Application project model and I'm running into compile errors that do not seem to be covered by the guidance I found at Converting a Web Site Project to a ...

1 2