Questions tagged [aspnet-development-server]
22 questions
11
votes
1 answer
Prevent Visual Studio 2010 from starting ASP.net development server
I have 3 projects in my solution.
Whenever I attempt to debug a unit test in any of the projects, VS2010 starts 3 (1 for each project) ASP.net development servers.
The issue I have is that VS2010 takes a long time starting these development servers…

Venkat Srinivasan
- 435
- 4
- 17
11
votes
2 answers
Visual studio: disable web development server for some web projects
I'm working on a web platform which uses ASP.NET MVC and supports plugins.
In this platform, each plugin is a folder under /Plugins folder.
For example, plugin A's virtual path is /Plugins/PluginA.
In development, one plugin is one separated asp.net…

Mouhong Lin
- 4,402
- 4
- 33
- 48
5
votes
5 answers
.Net Core MVC Deployment (Publish) missing views
I am trying to publish my MVC application in .NET core. I tried the File system, but it's missing all the View related files and throws error as soon as accessed.
After copying the view folder it started working . I am not sure If it's missing…

user2449952
- 581
- 1
- 7
- 21
3
votes
0 answers
Unable to load xml file in javascript running site under Development Server
I am unable to load an xml file in javascript (using the same code as here) when running the site under the VS Development Server. It works when running under IIS. I know that IIS displays static content without authorization by default and…

mikkark
- 135
- 9
2
votes
1 answer
ASP.NET URL-rewriting works in Development Server but not in local IIS
I'm programming ASP.NET using visual studio 2010 and IIS 7.5
I have URL-rewriting in Global.asax (RouteTable.Routes.MapPageRoute). It works in Development Server but not in IIS.
Is there a configuration for this in IIS?

nima
- 6,566
- 4
- 45
- 57
1
vote
3 answers
If any possibility connects database in amcharts (pie Chart) in asp.net?
<---- This below code used for PieChart.aspx.cs ---->
protected void Page_Load(object sender, EventArgs e)
{
}
public chart ChartUser(string UserId)
{
chart c = new chart();
SqlConnection con = new…

Dinesh Pandian
- 11
- 1
- 2
1
vote
1 answer
ASP.NET Development Server unexpected Authentication required
I have a localhost port based web page (a web service using the ASP.NET Development Server - MSVS2k8 WebDev.WebServer.exe) that works correctly when accessed via a browser (either Chrome 35 or IE 11), but it is currently failing when I access it via…

Mark Hurd
- 10,665
- 10
- 68
- 101
1
vote
0 answers
Not work when hosting ASP.NET contact us page
When I run this contact us page from localhost its work fine.
MailMessage msg=new MailMessage();
//Sender Email
msg.From = new MailAddress(TextBox1.Text);
//Reception Email
msg.To.Add("recieve@gmail.com");
msg.Subject=TextBox2.Text;
String…

Kalpesh
- 80
- 2
- 11
1
vote
1 answer
Very slow debugging ASP.NET MVC 3 project
I have a solution which contains 11 projects. The main project is ASP.NET MVC. When I run the project in debug mode (F5), the main page of the site loaded approximately 2 minutes. Note! Home page of the site is a login form, there's not a lot of sql…

Denis
- 3,595
- 12
- 52
- 86
1
vote
0 answers
ASP.NET development server: possible misconfiguration?
I'm facing a weird issue. I'm developing a website using C# and .NET 4, and I want to add routing service. After following several tutorials (unsuccessfully), I finally put myself in using an example and then build my website upon it. Once done…

balanza
- 1,059
- 1
- 12
- 34
1
vote
3 answers
Type is not resolved for member "Microsoft.IdentityModel.Claims.ClaimsPrincipal,Microsoft.IdentityModel"
Any thoughts about how to resolve this error? I'm stuck at the moment and having a hard time finding reading on this. Any help would be greatly appreciated:
Server Error in '/www' Application.
Type is not resolved for member…

Maria Gosur
- 91
- 2
- 12
1
vote
1 answer
xap loading error on asp.net development server
Recently I started to get a strange error,
While loading xap file it stops! In %95 in %4 very random .
There is an error in browser's developer console
Uncaught Error: Unhandled Error in Silverlight
Application
Code: 2104
Category:…

Davut Gürbüz
- 5,526
- 4
- 47
- 83
1
vote
0 answers
Visual Studio Development Server 2010 renders partial pages
I'm working on an ASP.Net web application. Over the last week the development team has noticed the pages are only partially rendering. That is when you click on a link, or a button or anything to does a post back the page will render a portion of…

Robert J Rastelli
- 11
- 1
0
votes
1 answer
How to pass Dynamic value to pathtowebapp [AspNetDevelopmentServer(identifier,pathtowebapp)] attribute in Unit Test method
I Have unit test project in this I am using AspNetDevelopmentServer attribute to test my wcf Service locally. It working fine When I give the arguments hardcoded like this
[AspNetDevelopmentServer("Test",@"C:\\Users\\LocalSourcePath")]
When I try…

Roophan Rengarajan
- 11
- 3
0
votes
0 answers
Strange error with EXT.NET in ASP.NET MVC application
I got the exception in my ASP NET MVC APPLICATION developed with ext.net in c#.
Server Error in '/' Application.
________________________________
ItemTag validation (_tkn_7): Reference token (id22be3fe15600a888_ClientInit) was not…

Simone Spagna
- 21
- 8