Tagged Questions
0
votes
1answer
73 views
file upload in asp.net shows 404 error
I have already set the file limits in C# file so that it checks for the file size
int filesize = personalFileUpload.PostedFile.ContentLength;
if (filesize <= 26214400)
{
}
also in my web ...
0
votes
0answers
30 views
Page name of the page that got the 404 in asp.net .. web.config vs IIS 404 redirect in Azure
I'm trying to move an asp.net 4.5 solution to Azure and noticing vb.net Request.URL and Request.UrlReferrer don't seem to give me the page name of the page that got the 404 when using web.config to ...
0
votes
0answers
19 views
How to not send headers to the browser for application errors before handling errors
Right now i am able to generate custom errors page with the code below at web config
<customErrors mode="On" defaultRedirect="Error404.aspx" redirectMode="ResponseRewrite">
<error ...
0
votes
2answers
179 views
webService request failed with HTTP status 404
I have problem with sending a big file via webService (System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse).
Everything works fine when the file is smaller then 20 MB, if it's bigger i ...
0
votes
1answer
50 views
How to redirect custom error page - with custom error url
I want to redirect custom error page with the visited custom error url
So for example lets say i have visited
http://stackoverflow.com/myOwnError
Now i want visitor to still land this page. But ...
1
vote
1answer
48 views
Redirecting non www, index.html, 404
I have created code to redirect for non www to www, /index.html to "/", 404 to custom page, I am using IIS server and putting this code in web.config file, have a look, its working fine. But I want to ...
1
vote
1answer
77 views
Why my custom 404 error handler does not work after deployed to web server
I followed this post and created a global error handler. And I added to handle 404 error myself. however, it works fine when I test locally but once deployed to web server, my custom message is not ...
2
votes
0answers
46 views
Why does IIS return 404 when an unsupported verb is used?
IIS traditionally returns HTTP 404 in case there's some URI path configured to accept POST requests but a GET request is sent to that URI path. Looks like there's HTTP 405 code specifically for such ...
0
votes
2answers
110 views
ASP.NET web application: 404 error in the remote server when a common database connection string is used
I'm working with a project in c# asp.net..
When i created individual connection strings for accessing the database, the program runs properly in the local and remote servers..
But when i wrote the ...
1
vote
1answer
67 views
404 redirect for pages only not images
I am working with an asp.net mvc application. I have the following entry in web.config to handle 404's
<httpErrors errorMode="Custom" existingResponse="Replace">
<remove statusCode="404" ...
0
votes
1answer
50 views
asp.net web forms — 404 on publish
I'm having some issues getting my project to publish to a server for work.
we don't have a folder shared to the project directory or a FTP server setup so in order to publish I have to publish it ...
0
votes
1answer
25 views
Custom 404 page to find out the link
I am looking to create a 404 page that can retrieve the page URL. I have tried using UrlReferer but this returned null. If I can find the URL I can create the relevant redirect.
Thanks
1
vote
0answers
357 views
404 error on signalr/hubs and on jquery scripts
I've just started using SignalR with C#, seems intresting.
I've created an ASP.NET Empty Web Application and followed the tutorial mentioned below
I found Getting Started with SignalR tutorial on ...
1
vote
1answer
466 views
Server Error in '/' Application. The resource cannot be found
I uploaded my orchard web-site on a hosting. In "wwwroot" I created a new folder "slider" and uploaded jpg files into it.
When I try to access them with the url "example.com/slider/1.jpg" I keep ...
0
votes
0answers
442 views
web server not showing crystal report viewer image icons windows server 2008 , error when try to print 404 - File or directory not found
in development server everything work just fine,but in
web server (IIS) not showing crystal report viewer image icons ,in Windows server 2008 enterprise, error when try to print 404 - File or ...
0
votes
1answer
62 views
Non-existent images returning status code 200 rather than 400
I do the following code to check if an image exists:
public bool DoesImageExist(string imageUrl)
{
bool exists = false;
try
{
HttpWebRequest request = ...
0
votes
0answers
145 views
ScriptResource.axd request aren't managed by Script handler
I've a problem with ScriptResource.asx handler. I'm using ReportViewer controller, and that's why ScriptManaged is used on asp.net page.
Everything works fine on local website, but after deploying ...
0
votes
0answers
121 views
ASP.NET page published on IIS 7 reports 404
I am trying to get an ASP.NET MVC 4 page working on a productive system. On my local system with IIS 7 and Windows 7 Professional everything works fine.
Productive system:
Windows Web Server 2008 ...
0
votes
2answers
189 views
404 Redirect firing when we receive an error - ASP.NET
I have the following values in my web.config:
<system.web>
<customErrors mode="RemoteOnly"
defaultRedirect="/CARE/Home/Custom404">
<error statusCode="404" ...
0
votes
2answers
136 views
ASP.NET 404 Handling Code Works Locally but Not on Server
I'm hosting my site on DiscountASP.NET. I've been having problems with my 404 error handling recently because the client is not being sent the 404 status code, and I can't figure out why it started ...
1
vote
1answer
390 views
ASP.NET MVC 4 controller inheritance
I have the following setup:
BaseController1 inherits System.Web.Mvc.Controller. This controller is compiled into a separate dll that is referenced from my project.
BaseController2 inherits ...
1
vote
1answer
162 views
Asp URL Rewrite on Multiple Domains
I'm currently making a link shortening service on my hosting package. I'm using URL rewrites to do this. An example of this working is here - dysign.co.uk/xBbYPL. This redirects you to Google.de. I'm ...
0
votes
1answer
54 views
IIS URL Rewrite 2.0 vs Intellegencia Rewriter which one is preferrable? why? [closed]
We have already used Intellegencia url rewriter available here. On live server we have IIS URL Rewrite 2.0 installed as well. Our rewritten URL were working after the fix suggested by Mr. Raheel (see ...
0
votes
1answer
216 views
asp.net rewrite url logic works locally but not on server gives 404 error
We are using Intelligencia UrlRewriter. All URL rewriting logic works perfectly fine on local machine using the built in visual studio server but fails on the live server. Live server has IIS 7 and ...
0
votes
1answer
89 views
Getting lots of unwanted 404 logs in my website
From the past few months, i am facing issue of getting 404 errors that caused due to requesting some bad URLs. I have no idea from where these links came from. In website we don't have such links. Few ...
0
votes
0answers
274 views
Uploaded images that are saved to file system cannot be accessed by website visitors (404)
So I'm using ASP.Net's FileUpload control to upload and save images to the file system in my web application. The images were originally not being allowed to save because IIS didn't have access to ...
0
votes
0answers
190 views
Customerrors redirectmode=“ResponseRewrite” does not work when authenticated
I have customErrors on, with my redirectMode set to ResponseRewrite. When authenticated, I get the generic ASP.NET 404 page which reads as follows:
Server Error in '/' Application.
The resource ...
3
votes
1answer
179 views
Folder requests not being handled by ASP.NET
I'm attempting to write a custom HttpHandler in order to handle all of my 404 errors. The handler is catching and handling all file types that I've specified but for some reason it isn't handling ...
2
votes
3answers
213 views
Custom 404 page errors for .aspx extensions
I have been trying to have my web app to redirect to a custom 404 page. It works for all urls except if they have a ".aspx" extension
The server is a Windows Server 2008 and here are the following ...
0
votes
2answers
377 views
IIS 7.5 Logs and ASP.Net 404 Custom Pages
I want to make a custom 404 page for my site but I want to log all the normal information into my IIS 7.5 logs like the default 404 deals with so my Statics program can tell me things like what page ...
0
votes
1answer
164 views
asp.net store URL of 404 request
I have the following in my web.config:
<customErrors defaultRedirect="/error/1" mode="Off" redirectMode="ResponseRedirect">
<error redirect="/404.aspx" statusCode="404" />
...
1
vote
1answer
154 views
404 Pages when tampering with the extention of the page
I have a Sitecore solution, where we handle 404 requests.
We do that by setting "ErrorPage" and the "ItemNotFoundUrl" in the web.config:
<setting name="ErrorPage" ...
1
vote
1answer
109 views
ASP.NET 404 Response Text Chinese-like
When loading a page containing references to non-existing URL's using tags, I see a strange text reply from the server.
The server does return status code 404 as expected, but it also includes a text ...
0
votes
2answers
2k views
Web Page Not Found - HTTP 404, ASP.NET page isn't working with IIS7.5
I am trying to create a new Web page on our IIS7.5 server. I am using the same settings as an existing and working site, but the new one isn't working.
If it's runing or not, I get the same error, as ...
0
votes
0answers
305 views
Site works in Visual Studio test but not IIS Server - aspx
For some reason that I can't figure out, the aspx site I'm working on works perfectly in my Visual Studio temporary test server, but when I copied it all to IIS, it doesn't work. I didn't write the ...
0
votes
0answers
157 views
HttpWebRequest returns 404 error using proxy
I am using the following code to make a HttpWebRequest to a web service and query it for some info.
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(URL);
if (ConfigSettings.ProxyUrl.Length ...
0
votes
2answers
637 views
How to programmatically serve HTTP 404 from ASP.NET code-behind and redirect to 404 page?
I've got an ASP.NET app that sometimes redirects to a 404 page if requested content isn't found. This is done something like this:
var data = MyDatabase.RetrieveData(dataID);
if (data == null)
...
2
votes
2answers
583 views
ASP.NET site Custom 404 Error blocked by Server Error
I have an MVC3 website and I'm trying to get the 404 error pages to show correctly. I've got it all set up that it
does not redirect the URL,
returns an actual 404 error status in the header,
logs ...
2
votes
3answers
384 views
How to add additional query string parameters when 404 redirect occurs
We are currently using a custom error page for 404 errors for our Web App. When the redirect occurs aspxerrorpath contains the path the user was trying to access. Is it possible to catch the error in ...
2
votes
3answers
119 views
Return 404 for other IP addresses other then mine in ASP.NET
I am testing my ASP.net website online, but I don't want it to be accessible to anyone, just from my IP address. How I can return 404 or something for people that aren't from my IP address. Developing ...
2
votes
2answers
742 views
Custom 404 Error Messages ASP.NET Visual Studio
Anyone know how to set the custom 404 Error pages that the Visual Studio Development Server uses?
I know how to get it to work if I set is as a local IIS server and then setup the custom 404 pages ...
1
vote
2answers
521 views
Error 404 on /bin browsing
I run IIS 7.5 on Windows Server 2008 R2.
I'm getting a 404: file not found error when I browse the "/bin" folder. I understand that this is a security policy by Microsoft.
I tried doing what is ...
1
vote
1answer
8k views
MIME types missing in IIS 7 for ASP.NET - 404.17
When getting a newly configured Windows 7 box, I noticed that ASP.NET was turned off by default. So was classical ASP. I was getting a 404.17 error for a web application. I think it's because I ...
1
vote
2answers
513 views
404 handling - Difference between local ASP.Net (C# 4) and remote server (live)
I'm facing a problem:
I do want to do URL rewriting with ASP.Net
It works perfectly using my local settings, but once on the server it doesn't work as expected.
Local
Request to ...
0
votes
1answer
382 views
Asp.net custom 404 not working using Intelligencia rewriter
Web.config :
<customErrors mode="On">
<error statusCode="404" redirect="~/Page-Introuvable" />
</customErrors>
Rewriter.config :
<rewriter>
<rewrite ...
0
votes
2answers
499 views
How to convert 404 error code in 301 permanent redirect
I want to convert my 404 status code in to 301. I have top indexed site in SEO and I don't want to loos my position if bot don't found my page.
For some URLs I am getting 404 status and by redirecting ...
0
votes
1answer
281 views
Website gives a white page instead of an 404 error
I have this quite strange problem:
When I go to a URL which doesn't exist on my website, it simply shows a white page. The Application_Error event is never run, and the user is not transfered to the ...
2
votes
2answers
1k views
ASP.NET Context RewritePath 404 Error
I have an .net 4.0 web application works like a charm at my local computer and old web server. Both computer uses classic and .net 4.0 application pool without any problems.
But when i migrated to a ...
1
vote
2answers
138 views
Image caching issue by using files in ASP.NET
I am facing a problem with Image caching by using files in ASP.NET. My detailed solution is:
For 1st request: I check the image file not exists and write the image file into hard disk. After that ...
0
votes
1answer
380 views
404 ASP.NET Web API
I'm trying to host my ASP.NET Web API (Web Forms) but I'm receiving a 404 (viewed in fiddler):
I have my Route set up in my Global and it works perfectly on my local - what am I missing here?
Any ...

