Configuration :: Getting 'Page Not Found' (inconsistantly) On Site That Works?

Oct 18, 2010

When a user opens the my web app then immediately opens clicks on a button to open another, related page (page opens in a separate window (users choice) via a button), the new page opens fine. If a user open the my web app and waits a bit (usually abouta minute) before clickin on the button to open another page, they get the 'Page Not Found' error. When I run this app locally (local host), I have no problems.the server can handle, why does this happen only after the user waits to open the other page.

<httpRuntime maxRequestLength="2097151" executionTimeout="3600" useFullyQualifiedRedirectUrl="true"/>
<sessionState mode="InProc" timeout="480" />

View 2 Replies


Similar Messages:

Configuration :: 2.0 Site On IIS 6 - Loads Super Slow And Sometimes Throws "Page Not Found" On Post Back?

Jan 24, 2011

Looking for advice on how to troubleshoot an application (not something I wrote) that is on the old 2.0 Framework. It acts "crazy" sometimes when selecting an item from a drop down list. Sometimes the page will reload like it should on the post back with the new data, while othertimes, it just throws a Page Not Found error. What's the best way to troubleshoot and eliminate the various variables of IIS6, 2.0 Framework, SQL Server, the VirtualMachine, etc.

View 3 Replies

Configuration :: Site Works At Root Of Domain But Not In A Subfolder?

Mar 26, 2011

So my website works great on my local computer. It also works fine when I use the Copy Web Site feature in Visual Web Developer 2010 Express. But I do not want all of my files and the default.aspx to be sitting at the root of my domain name. I want it to be in a subfolder.

So again, it works fine when it's sitting at www.domainname.com

But when I use my FTP program to move the files to:

www.domainname.com/subfolder/

I get an error when I try to visit the site. It's just a general runtime error and does not display the specific error message. It obviously must have something to do with when I MOVE the files/folders from the root of the domain to the subfolder?

View 2 Replies

Configuration :: Network Drive Mapping Works In IDE, But Not On Published Site?

Apr 27, 2010

I am able to save documents to a network drive from my c# asp.net application when it is run from my developmet machine, but not when the application is deployed to a website. Below I list the code that makes the call to map the drive the class is a standard class for this purpose. Can anyone help me figure out what is wrong?CODE:

The code that instantiates the mapping class
NetworkDrive drive = new NetworkDrive();
drive.ShareName = @"\38.186.8.244Docs";

[code]....

View 8 Replies

Configuration :: Global.asax Email Not Working In Test Or Production But Works On Hosted Site

Apr 12, 2010

I have a hosted site and just added some additional error notification to my global.asax file and works like a charm. I decided to add the same logic to our test server and it doesnt work. The server.transfer never happens and the email never gets updated. Now i know the email works on the test and production server since we have other pages that use the same SMTP server name and setup as i have in the global file. Below is my code as it is in the file now. I setup a test page to cause an error and the page displays the detailed error which we dont want. But i would like to be notified if this happens. What am i missing? I can only assume that its a IIS confige issue, since the exact same code works on a hosted site, but not at work on our test or production servers. Here is the code i have in the global.asax

[Code]....

View 18 Replies

Accidentally "Page Not Found Error Message" - Sometimes It Works And Sometimes Not?

Jul 22, 2010

I just tested a new aspx-website and in the debug mode it works fine.

But when I publish it on the server 2003 with IIS6 then it works first and after several requests I get an error message page not found.

The page itself exists and I think that it is only unavailable on the server.

View 6 Replies

Configuration :: Web Page Works With Localhost But Not With IP

Mar 26, 2011

I have a simple asp.net web page that lists and inserts records into an access db. It works fine by pressing F5 to run in the VS 2008 IDE (Localhost:port) but won't work when it is published. The log shows this error 500 0 0 207.

View 5 Replies

Configuration :: The Page Cannot Be Found

Aug 31, 2010

I have a link as template column in my customgrid and it is defined as:

<a
target="_blank"
href="<%=ApplicationPath.VirtualPath%>ShowTemplate/<%#
Eval("Recid") %>"
>View Details</a>

On clicking this link, a document should be opened. It is working fine in my local. While it is built and run on server it is showing:

The page cannot be found. The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.

View 6 Replies

Configuration :: Resource Class For Page Was Found?

Nov 6, 2010

have a website. If I run it locally it works. I also published it on server and if I navigate to http://www.mydomain.com, everything works.Then I wanted to set up staging site on real server for testing purposes. So in IIS under the node of that site I added "Application" with url http://www.mydomain.com/testapp.f I put the same code inside I receive that exception that resource is no accessible.

View 1 Replies

Configuration :: Simple Page Freezes On IIS7 And Works On IIS6?

Jul 13, 2010

I've done a very basic asp.net test page that populates dinamically (with items from 0 to 99) an asp:listbox on the onload event (only once, if not ispostback).

The asp:listbox is static, and there's an asp:button that I use only to produce a postback (it has no onclick server code)

When I execute it under II6 it works perfecty, but under IIS7 I get a strange behaviour: every now and then, when I push the asp:button, the page freezes and it's unable to postback.

I don't get a specific asp.net error as usual, just a blank page as if the website didn't exist!

The message is "Internet Explorer cannot display the webpage"

View 1 Replies

Configuration :: Site Works On Visual Studio But Not On IIS 7 - SQL Express Server Error "Cannot Open Database "AnimalSafe" Requested By The Login"

Jul 31, 2010

I'm having an issue that has made me loose too many hours already. My site works fine in VS2008 with SQL Express 2008. However, when I try to deploy the site following these steps:

1. Create a new site IIS 7.0
2. Copy all the files from my code folder to IIS 7.0, (I was planning to delete the code latter)
3. Browse to my Index.aspx

The error message I receive is Cannot open database "AnimalSafe" requested by the login. The login failed. Login failed for user 'NT AUTHORITYNetwork Service'. I've already changed the application pool to use Network Service to authenticate and have made sure that SQL is running under this account.

View 3 Replies

Configuration :: URL Routing / Rewriting - Http 404 Page Not Found Error

Dec 25, 2010

In my website users can create thier own websites by making folder of thier choice like: [URL] Where the folders Pankaj and Adam are storing in database. I just want that when user after creting thier website just clicked or type the address of thier website as [URL] then if the folder with name Pankaj exists in database then the page will open otherwise it gives the http 404 page not found error. And while the address [URL] is opens then i donot want to physically create it on server. My requirement is that i want to open it by the concept of url rewriting/ Routing. Which one concept will be good for this. And can anyone provide some code with example that how can i achieve this easily.

View 2 Replies

C# - Class Not Being Found Online But Works Locally?

Mar 26, 2010

I am getting this error after uploading my web app to my Rackspace box.

CS0246: The type or namespace name 'User' could not be found (are you missing a using directive or an assembly reference?)

It's odd because it works fine on my local computer where I do development. The actual line of code is:

public User user = new User();

I am using C#.

View 1 Replies

Configuration :: Can't Run The Page From The Remote Site

May 7, 2010

I use visual studio 2008 to create a new site at local IIS. I dragged login,loginview,loginstatus controls from toolbox and dropped to the page as well as set up the security from administrative tool. It's working fine locally however when I published it to the remote hosting site, I can't even see the page, only error instead. It's using VS builtin DB and I can't see the connection string in web.config.

View 1 Replies

Internet Explorerunable To Open This Internet Site The Requested Site Is Either Unavailable Or Cannot Be Found.Please Try Again Later

Jan 6, 2011

When im try to export to excel from my web page im getting this error.

View 2 Replies

Configuration :: Creating Dynamic Site Map Page

Oct 5, 2010

I have created a ASP.Net application which basically serves as a content management site. I need to create a Sitemap for our website which should be dynamic. I've tried Telerik's Sitemap control for ASP.net Ajax and found it useful. I want to know which is the best way to create a dynamic site map page in an ASP.net application before i proceed with the telerik control.

View 1 Replies

IIS Configuration :: Site Runs Locally But Page Does Not Open When Hosted On Server

May 7, 2015

I have a site (URL...) which loads and runs fine locally on the server itself, but when I try to access this externally from outside of the server (and firewall) will not load. In Safari for example, I get the message "Safari could not open the page because the server stopped responding".I have other sites on this server that do load and operate fine so I don't belive this is a Firewall issue. One thing I did notice however is that when the error message appears, it seems like the site is trying to change the protocol from http to https.

I'm trying to debug this to find out what could be happening. I've tried looking into the IIS logs as well as the Event Viewer but I see nothing. I have even tried to turn on Failed Request Tracking but no errors are logged.

View 1 Replies

MVC :: RenderAction Failing In Site.master, But Works In A View?

Sep 2, 2010

I have a master page into which I'm inserting a 'Search' partial view, which I've called 'pSearch.ascx'.

I need to pass in a model to make some data available to pSearch, so I am using RenderAction from the site.master page, which then should call a [ClientActionOnly] Action on the 'Home' controller, called SearchPartial(), which in turn returns the pSearch view.

Code from site.master: <% Html.RenderAction("SearchPartial", "Home"); %>

Code from HomeController.cs: (the method is virtual because I'm using T4MVC in the project)

View 2 Replies

Configuration :: Site Is Not Showing Any Content At Live Site From Database?

Jun 15, 2010

I am working at a site not orginally devleoped by me. The problem is that all the pages are working fine and have no problem at my local site. but the site is not showing any content at live site from database. Niether it shows an error for it. How can I find the problem?

View 7 Replies

Configuration :: Deploy A .NET 4 Site To Upgrade An Existing .NET 1.1 Site?

Oct 3, 2010

I am neither a server administrator nor very knowledgable about how to configure IIS, so I have the following problem:

My client hosts their public website from their own internal server running Server 2003 with IIS 6. The current website is a .NET 1.1 application configured as a website in IIS. Within this site a separate virtual directory configured as an application runs a separate .NET 1.1 app that serves as their online webstore.

I've been tasked with upgrading the website (not the webstore) to .NET 4 and getting it installed and working on their server. My initial plan was to simply change the existing websites home directory to the new home directory from the IIS admin console and be done, but then I read that this would break the application directory that hosts their online store because .NET 1.1 applications cannot be nested within .NET 4 applications. Can anyone confirm this?

View 3 Replies

Configuration :: Converted Website To 4.0 - Nothing Works

May 26, 2010

I am running on Windows Server 2003. The former site was a .Net 2.0 website built using VWD 2005 as I recall. I downloaded VWD2010 and upgraded the project (from the fileset on the server). Initially I got an error stating: 'Unrecognized attribute 'targetFramework'.

I went into IIS, clicked properties for my application, and set the ASP.NET version to: 4.0.30319. When I restarted IIS, the project could not find any of the 'pages' (i.e., Page Not Found) for all pages. I ran: aspnet_regiis -i Essentially, the web server acts like the application doesn't even exist with the 'Page Not Found' error. I'm sure this has to be a simple issue - but I can't figure it out so far

View 3 Replies

Configuration :: VB.Net IF Function Works On One Server But Not Another

Aug 27, 2010

I have two web servers plus my desktop. I use Visual Studio 2008 to generate asp.net pages. I put a statement like:

response.write("Testing if function: " & if(0>1,"true","false") & "<br />")

in a code-behind file (test.aspx.vb). When I type it, Intellisense clearly recognizes the IF function and gives me guidance on the two overloaded versions. When I Build the page, it gives no errors, but when I View in Browser, I get an error: "BC30201: Expression expected." with the compiler details pointing to the IF. When I run the page on my test server, I get the same result, but when I run it on my production server, it works just fine.

View 5 Replies

Configuration :: WebSite Works But Web Application Does Not?

Aug 9, 2010

I created a web application (VS 2008 + SP1) and deployed it on my shared hosting with ASP.NET 2.0 support. I started getting errors

could not load type <page class name>

I tried resolving it but it did not work. The hosting provider told me that they have full support of .NET 2.0 framework. I tried a few inline code samples and they worked fine. Then I again deployed a small compiled website project and it also worked fine.

I dont understand. why is that when i deploy a web application project it fails and if i convert the same thing into website project it works.

View 2 Replies

Configuration :: Application Works In Test But Not Production?

Oct 18, 2010

So my application worked great on my computer but as soon as I try and put it in production....I'm getting all sorts of issues.

[Code]....

This is the top of Default.aspx.vb.

[Code]....

View 10 Replies

Configuration :: C# Web Application Works In Debug But Not When Deployed To IIS?

Oct 27, 2010

I know there have been countless posts on these types of problems, and I have read through alot of them as well as doing Google searches, but I have not found anything that applies to my specific situation. If anyone has posted a similar question link me to the post with any appropriate derisive comments . Mods if this is the wrong forum feel free to move the post to the appropriate location.

I am a newbie C# developer. I have been getting my feet wet writing a C# web app for my department. I am using the following system:

Windows 7 Professional Visual Web Developer 2010 Version 10.0.30319.1 .Net framework 4.0.30319. IIS version 7.5.7600.16385 Internet Explorer 8.0.7600.16385CO SQL Server 2008 R2

When I run my application in the VWD debugger everything works fine and looks the way I want it to work. When I deploy to IIS (which is on the same box that I develop on) I start having some issues. Here is a breakdown of the problems I am having:

I have an asp:menu control with orientation set to horizontal. When I initially load the sitre after a deploy the menu displays correctly. But when I go to a different web page in the app the menu switches to vertical and the width of each menu item spans the width of the div that surrounds it. On the same page that causes issues with the asp:menu I also have asp:ComboBox controls that are used to filter information on the page. The combo boxes just look like text boxes. The data that should populate the boxes is not present.

I also have some ajax accordion controls contained in asp:updatepanels, neither of which work. The accordion controls are all expanded, and I cannot collapse them. If I trigger an update the entire page reloads instead of just the specific control.

I do not receive any errors when I browse to the page that causes the problems. It loads just fine everything is just jacked up. Like I said, everything works flawlessly in the VWD debugger. I know the VWD debugger does not use IIS, which makes me think this is an IIS issue, but I do not even know where to start to pinpoint the problem.

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved