Questions tagged [web-site-project]

Web Site "projects" are created by using the File->New Web Site command in Visual Studio. They are very strange and should not be used unless you really need to. In most cases, you should use File->New Project.

Web site projects are projects that encompass a web site that will be available through a device using a browser.

498 questions
5
votes
1 answer

Three.js: How to morph cube to sphere on mouse hover?

I want to know how to make a geometry morph into a different one controlled by mouse in and out. For example, when a mouse hovers on to the cube, it morphs into a sphere, but when mouse out of the object it goes back to a cube. Similar animation to…
panman
  • 69
  • 1
  • 7
5
votes
1 answer

Visual Studio 2015 hangs when opening property page on right click menu

I have a website project and Visual Studio hangs when I right click on the project name in solution explorer and click property page. I tried to find out what VS is doing by Process Monitor and it shows that VS keeps looking for…
EricS
  • 805
  • 1
  • 9
  • 20
5
votes
1 answer

Msbuild fails building website project with an indirect reference to System.Runtime

I am running into a dependency issue with MSBuild. I added a NuGet package for Microsoft.Tpl.Dataflow to a project in my solution. This is causing a build failure for a website project in the solution which references the first project. There seems…
Kris Harper
  • 5,672
  • 8
  • 51
  • 96
5
votes
2 answers

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 looked in the property pages for the web project,…
Peter Evjan
  • 2,423
  • 3
  • 32
  • 50
5
votes
6 answers

MSBuild: Building asp.net 4.0 web sites: .metaproj -files

I have a solution-file with ASP.NET Web Sites. When I build the solution with .NET 4.0 Beta 2 using "c:\WINDOWS\Microsoft.NET\Framework\v4.0.21006\MSBuild.exe" d:\MyPath\MySolution.sln Everything works fine, no errors. Then I try to build the same…
4
votes
1 answer

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 name and namespace should be specified?
Greg
  • 1,227
  • 5
  • 23
  • 52
4
votes
1 answer

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 fairly quick (especially after following some of the…
cori
  • 8,666
  • 7
  • 45
  • 81
4
votes
2 answers

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?
locoboy
  • 38,002
  • 70
  • 184
  • 260
4
votes
1 answer

Bundled So-Simple Jekyll theme not running in localhost with jekyll serve?

I am making a website for my girlfriend on her birthday as i cant be with her on that day. I am using So-Simple Jekyll theme for the site but its not working somehow and not opening in local host. Its throwing the following error. $ jekyll serve…
goodmayhem
  • 3,364
  • 4
  • 16
  • 17
4
votes
1 answer

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 website recompile: By default, when any change is…
John K
  • 28,441
  • 31
  • 139
  • 229
4
votes
3 answers

Unable to access class from app_code

I have a web site(not web app) which has a default.aspx and default.aspx.cs. And it has an App_Code folder with class A in it. So default.aspx.cs. Looks like: namespace test1 { public partial class _Default : System.Web.UI.Page { …
user3532232
  • 257
  • 8
  • 19
4
votes
4 answers

How to use additional C# source file on page in Web Site project?

Edit: { I think I've added a lot (too much) of information (reading) here. The important bits of what I want is: I'm using a Web Site (no .csproj file) I need multiple source files of code for my ASPX to run From what I understand I either need…
Mike32
  • 111
  • 1
  • 9
4
votes
0 answers

Azure Website/Visual Studio Online Continuous Deployment fails for Website

I hooked up a Web Site project in Visual Studio 2013 to the continuous deployments within Azure Web Sites. Checking-in triggers a build, but I receive the following error: Exception Message: The deployment package file (*.zip) was not found. …
4
votes
3 answers

How do you set AssemblyVersion when using Publish Profiles (.pubxml) from a Web Site Project?

I am using the new ASP.Net and Web Tools 2012.2 Publish Profiles for Web Sites (not web application). I have created a Publish Profile using the tooling which has created the file website.publishproj in the root of the web site. The…
gregpakes
  • 4,465
  • 29
  • 43
4
votes
1 answer

convert web application to a web site

I have a c# .net VS2010 web application that contains only classic asp files. What I want to do is convert the web application to a web site to make it easier to manage the classic asp files. How can I convert from web application to web site? I…
amateur
  • 43,371
  • 65
  • 192
  • 320
1 2
3
33 34