0
votes
4answers
31 views

How to get base URL using javascript

How do I get the base URL using javascript? E.g., When I browse my site from visual studio, and if my URL is http://localhost:20201/home/index, I would want to get http://localhost:20201 If I host ...
0
votes
1answer
18 views

Why is location.hostname not consistent?

I have a asp.net MVC project, and in one of my javascripts, I am calling location.hostname When I host my application on MVC, on my Windows 7 & 8 PCs, I am able to get it to print out ...
0
votes
0answers
21 views

Deploy MVC4 application in IIS of Windows server 2003

Trying to deploy an ASP.NET MVC4 mobile application to IIS6 on Windows Server 2003, but it is showing access denied permission error in the browser.
0
votes
1answer
21 views

Why is IIS not serving our changes to layout.cshtml?

Here are the steps to reproduce the problem: Make a change to layout.cshtml Upload the changed file to the server via Filezilla Do a clean refresh of the site in Firefox The problem is that the ...
0
votes
0answers
20 views

Request remains in pending even if function on server hits the return statemant

I have an XMLHttpRequest that carries a file. On the server, everything works perfectly, the file is saved and after that the return statement is hit but in the browser console, the request is shown ...
1
vote
1answer
22 views

IIS 7.5 - Files with no extensions causing Error 404.17

I am currently developping an ASP.NET MVC4 Website and I am trying to include javascript timezone support for JQuery Flot with date.js. The timezones informations of date.js are stored into text ...
0
votes
1answer
18 views

Expire updated CSS and JS files

We have a site (MVC4 on Azure) on which we change our JS an CSS files occasionally. The updates are not scheduled and some times - quite often. I don't want to go into IIS and change settings or work ...
0
votes
0answers
24 views

503 (Service Unavailable) - IIS 7.5 deployed MVC web application

Every 24 hours or so, we receive a 503 from our IIS 7.5 web server that hosts our MVC application. I read some related articles and checked if the Application Pool/Identity had the necessary ...
0
votes
1answer
34 views

what causes IIS to load .NET 2.0 dll instead of 4.0 version inside 4.0 application pool?

We have a website, built using the latest MVC 4 running on IIS 7. We created its own application pool and set its runtime version to 4.0. All was going well for the past couple of months. Yesterday, ...
1
vote
2answers
26 views

ASP.NET HttpHandler vs IIS handler

I've defined an HTTP Handler and added an entry in my web.config <add verb="GET" path="TestApp/*" type="TestApp.TestHandler, TestWebApp" /> This works as I would expect EXCEPT when I ...
0
votes
2answers
86 views

IIS Application pool running under network service can't connect to SQL Server

I just deployed an ASP.NET MVC 4 application to IIS 7 but when I browse it i get the following error: Cannot open database "PCSPI" requested by the login. The login failed. Login failed for user 'NT ...
0
votes
1answer
33 views

How to modify the default allowed response size settings for a Web API Application?

I have a Web API method that returns a list of Events: public HttpResponseMessage GetEvents() { ... } My Service supports both Xml and JSON responses using DataContractSerializer (for xml) and ...
0
votes
2answers
51 views

Reducing number of redirects - http to https

I am trying to reduce the number of redirects at my website login page in order for the page to load faster. My final task is deciding if it's possible to remove the redirect for the login page and ...
2
votes
0answers
26 views

REMOTE_USER missing under ASP.NET after SSO

I'm working on bringing an ASP.NET MVC application (IIS) behind a SSO system. I don't know much about the SSO but was told by the local support that after login by some CGI, the REMOTE_USER ...
0
votes
1answer
68 views

Session state are different for same domain with/without www prefix

I have Azure(C#/MVC) project which uses session state. I store sessions in Cache shared in memory of my role instances. But session state stored in http://mydomain.com and http://www.mydomain.com are ...
1
vote
1answer
99 views

IIS smooth streaming does not play a video on asp.net MVC 4 with Razor

I am trying to get a basic demo working but can't succeed, I've spent hours and hours on it.. I am building an iis smooth streaming player with no controls at first that auto plays the video, I am ...
0
votes
1answer
52 views

Custom error pages in web.config file are not covering all url paths

In my web.config file I have specified some custom errors: <customErrors mode="RemoteOnly" defaultRedirect="~/Error"> <error statusCode="500" redirect="~/Error" /> <error ...
0
votes
1answer
17 views

ASP.NET MVC Deployment Error

I'm getting this Server Error in '/' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the ...
1
vote
1answer
34 views

IIS 8 401.3 with ACL and static content

I'm having a problem with IIS and ACL's. I have configured an MVC application under a dedicated AppPool. The apppool runs under the ApplicationPoolIdentity (which in my case would be the user IIS ...
0
votes
2answers
27 views

Map legacy htm files to equivalent action

I was trying to do the following: public class RouteConfig { public static void RegisterRoutes(RouteCollection routes){ { //other stuff routes.MapRoute( name: ...
0
votes
0answers
18 views

AuthorizeAttribute does not go back to normal controller execution?

My Controller and action: public class someController: Controller { [SecurityAttribute] public ActionResult someAction() { try { My Authorization ...
0
votes
1answer
35 views

How to base my ASP.NET website out of a specific URL directory?

I've got IIS 7 serving up my ASP.NET MVC website. It's the only site that I have configured in IIS. When I access the site, the site is based out of the root URL directory. For example, my site would ...
0
votes
1answer
89 views

FineUploader - Hangs on uploading in FireFox over 350kb

Ok a problem has arisen today with FineUploader, it was working ok yesterday, and nothing has changed for the file upload part of the code. The site is running on Windows Server 2008 R2, with IIS7 ...
0
votes
0answers
24 views

Cannot access our website via different pc. When entering full URL in the server, it requires user and password [closed]

We recently installed a certificate on a win2k3. We managed to access our website using different pc, over the internet. Today we try to access the website from any other PC and we see that the ...
1
vote
1answer
39 views

IIS is Redirecting to a 404 Error Page When There is a Hash Value (#) in the URL That Includes a Period

I've come across some behavior that I can't seem to figure out. Some users notified me that tumblr urls were not working for my site. Tumblr is adding a hash (#) plus some random characters of which ...
1
vote
2answers
49 views

IIS Error 403.14 - Forbidden

I am facing a problem with IIS and ASP.net. I reinstalled the IIS because it wasn't showing the "Default Website" and after that I reinstalled ASP. Now I am facing the error you see below. I should ...
0
votes
1answer
27 views

How to find out where a handler mapping is being inherited from in IIS

Here's my problem. I'm installing a module that the company I work for developed in a version 5.0.4 DotNetNuke installation. The .dnn manifest file has a nodes section that includes this add ...
0
votes
0answers
20 views

ARR Load Balancer Asking for a password

Recently I have tried setting up a simple load balancer using Microsofts ARR My setup is very simple. I have two web servers (iis) running on two different physical machines and then another server ...
0
votes
0answers
58 views

MVC4-WCF - async loading of data from 3rd party

I'm setting up a server-client solution with ASP.NET MVC4 and a WCF-service, and was thinking you might have some input to a couple of questions. The WCF-service get its data from a 3rd-party service ...
1
vote
0answers
33 views

Razor: use Layout file of other Application

I have a MVC4 Webapp (1) with a Virtual Directory under it which contains another independent Webapp, like so: MainApp Areas SUBAPP <------ THIS is a Virtual Directory with its own ...
-1
votes
0answers
106 views

IIS : HTTP Error 403.14 - Forbidden The Web server is configured to not list the contents of this directory [closed]

I have same problem like This I've tried like that, but i still get same error, anyone can help?
0
votes
0answers
61 views

asp.net mvc 4 application, uploaded files by user getting a HTTP Error 401.3 - Unauthorized

I have an Asp.Net MVC 4 website, and users can upload photos via a 'members area'. The system is then saving the original file, as well as resizes 3 different versions (small, normal, large). The ...
0
votes
1answer
44 views

Where can I find appcmd.exe for IIS Express?

I am trying to run the following: rem %windir%\system32\inetsrv\appcmd set config -section:applicationPools -applicationPoolDefaults.processModel.idleTimeout:00:00:00 rem ...
1
vote
1answer
40 views

Access site from public ip

When I debug my asp.net mvc3 web application on http://localhost:11118/ using microsoft visual studio and it works perfectly. But when I try to view it on http://MYPUBLICIPADRESS:11118/ I get a HTTP ...
0
votes
1answer
71 views

IIS 7.5 Session times out at 30 minutes regardless of all other settings

We have a ASP.Net MVC Web Application that keeps timing out after exactly 30 minutes. In the web.config, I set the sessionState timeout value to 500 minutes. After 30 minutes, the session still ...
0
votes
1answer
13 views

ASP.NET IDENTITIES Turn On when i publish

When i publish my MVC4 C# website on my server, the IIS authentication "Take Identity of ASP.Net" is turning On automatically. How can i do for let this authentication "Off" ?
4
votes
2answers
105 views

ASP.NET MVC 4 Catch-all only firing on local, not on remote requests

In an ASP.NET MVC 4 application, we have set up a catch-all route as follows: routes.MapRoute( name: "UnKnown", url: "{*url}", defaults: new { controller = "CatchAll", action = ...
0
votes
0answers
65 views

ASP.NET MVC - Creating SAAS framework

I currently have a ASP.NET MVC 2 web application and would like to enhance the architecture to support a SAAS model. I plan on eventually building a number of web applications so would like to design ...
0
votes
1answer
115 views

call to web api endpoint from same mvc application is timing out

I have a REST service implemented using ASP.NEt Web API. For some reasons I needed to call one of the endpoints from within the same application and report the time it took to get a response from the ...
0
votes
1answer
107 views

IIS 7.5 MVC4/.NET4.5 Nothing but the default page loads

... everything else (scripts, css, other pages) return a 404 error. This works on my DEV machine under IIS Express so I'm assuming I've configured IIS 7.5 incorrectly, but nothing leaps out at me. ...
0
votes
2answers
40 views

how to config or handle iis when my website change its directory

When I developed and deployed asp.net mvc application in the past,my code is like this: <script src="../../Scripts/jquery-1.4.4.min.js" type="text/javascript"> </script> <img ...
0
votes
0answers
14 views

Mix base authentification and forms authentification

I have in iis site that have both base authentification and forms authentification enabled.When I go to site window with login and password appeares.But when I enter login and password for base ...
1
vote
1answer
46 views

How do I route incoming requests to specific apps based on IP?

How would I route requests to different IIS apps based on the user's IP address? I'm looking to pilot a test version of a production site to a specific IP address. I would rather not have to force ...
2
votes
1answer
81 views

MVC 4 bundling broke when published as IIS7 application

I'm attempting to deploy an MVC 4 project onto IIS 7. I need the project to be an application inside a website so that users can continue to use an existing site but access mine by adding /mySite to ...
13
votes
3answers
205 views

MVC4 / IIS / Forms Authentication SSO issue

I’ve got a weird intermittent issue with MVC4 / IIS / Forms Authentication. I’ve got a pair of sites that pass control to each other using SSO. Most of the time the handover occurs correctly and the ...
3
votes
1answer
218 views

WCF Service Application and MVC4 Application hosted on local IIS (not express) throwing connection string erro

There are already a handful of questions out there but none seem to have gotten any attention or answers to what is causing this error, and how to fix it. Background I have created an ASP.NET MVC4 ...
0
votes
1answer
42 views

ASP.NET MVC Sub Application

I have a ASP.NET MVC application at a root level (e.g. http://example.com), and have now deployed an additional ASP.NET MVC application as a sub-application (e.g. http://example.com/api). I have set ...
0
votes
1answer
53 views

Deply asp.net mvc 4 web application

I'm currently developing a web application with asp.net mvc 4, wich uses a SQL database. My question is, how can I deploy it on my machine so its accesible from the internet? I really want to just ...
0
votes
2answers
142 views

MVC 4 Entity Framework Web config

I have an application which connects to our SQL Server 2008 enterprise. My config file contains: name="patbase" connectionString="Data Source=pbsqlserver1;Initial ...
0
votes
0answers
163 views

Deploy multiple asp.net mvc 4 projects of an solution in as an single application

I'm new to asp.Net MVC 4, therefore maybe a simple question for the most of you. I want to deploy multiple projects of an solution as a single application and access to the different projects over an ...

1 2 3 4 5 16