Links Not Working When Deployed On IIS 5.0?
Jan 29, 2010
I have an asp.net2.0 application with a treeview control for navigation on my site. the application works fine with development server but when i deploy my site on IIS 5.0, the links stop working after the first click on any link.
View 1 Replies
Similar Messages:
Mar 24, 2011
I just deployed a site and all looks okay as far as it being up there and the files are there.However when I go to click on any link, they don't even send a request back to the browser.If I right click then open link in new tab is sends it along just fine but it seems like the page can't initiate a request back to the server,
View 2 Replies
Mar 17, 2010
I have an ASP.NET web application(webforms,not MVC) developed in VS 2008 and i have implemented ASP.NET web forms URL routing by following this link [URL]
It works pretty good when i run it on the Visual studion IDE.But does not works when i created a site under my IIS (IIS 5.1 in XP) and deployed the same files there.I have set ASP.NET version as 2.0 in the Properties window of my application too.But does not work.
View 3 Replies
Feb 16, 2010
I recently embarked on the endeavor of creating my own asynchronous file upload components for ASP.NET. I took lessons learned form Darren Johnstone's FileUpload project and created an HttpModule for extracting the files from the submitted data.
I got everything working as it should in testing with VS 2008 using the Development Server. I even went so far during my testing to ensure that the request was being intercepted by the module before the files began uploading. After I was satisfied with things, I deployed the project to our web server (Win 2008 w/ IIS 7). I was horrified to learn that the controls were not functioning when deployed.
After some remote debugging, I found that the HttpApplication.AuthenticateRequest event (my location for hooking in to the process) was not being invoked until the files were completely uploaded.
View 1 Replies
Dec 14, 2010
I have just deployed my entire website onto my hosting provider. My databases worked fine whilst I was testing the website on the local host. They use Plesk Control Panel. Here is my connection string:
Data Source=.SQLEXPRESS;AttachDbFilename|DataDirectory|ASPNETDB.MDF";Integrated Security=True;User Instance=True (nothing is omited from this string)
Why isn't this working when the website is online? I get the error Invalid value for key 'attachdbfilename'. I have retargeted my website for .net 2.0 at the providers request because they do not support .net 4.
View 6 Replies
Jul 19, 2010
in my web application i'm using CultureAndRegionInfoBuilder to Register and UnRegister my custom culture and it is working fine when i run theapplication from VS2008 IDE but not when i deploy to IIS. It's giving the error meesage "Register Method failed
View 1 Replies
Jun 24, 2010
I am working on migrating a site from IIS 6 to IIS 7 and I am not able to see all of my logs. My system.diagnostics configuration is as follows:
<system.diagnostics>
<trace autoflush="true"></trace>
<sources>
<source name="Assembly1" switchValue="All">
<listeners>
[Code]....
If I run the application locally using the ASP.Net web server or local IIS I get all my log files. Once the application has been deployed to IIS 7 I only get the System.ServiceModel log. I have verified that the directory exists and I have given full control to everybody. I also have restarted the services and the site in an attempt to force the logs to flush. I have just been trying anything to get a log out of this thing so I also installed the Tracing and Logging Tools role services. I still don't get my application logs.
I also tried an implementation where I logged to the EventLog instead of trace log files. This also exhibited the same behavior. Worked locally and when deployed to local IIS but not when deployed to the actual server. I logged to the application log and on my IIS7 machine I gave full control permission to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetserviceseventlogApplication.
Seems like I must be missing something here. I can't get any information out of these 2 different logging implementations when deployed within IIS 7. I'm not even sure what is common here. Do EventLog.WriteEntry and Trace.TraceEvent both use WCF?
View 1 Replies
Apr 4, 2011
I have created custom membership and role providers for a SharePoint web application.
If I deploy the DLL for these classes into the GAC, the membership/role provision works just fine. If I deploy these DLLs to the web application's bin folder in IIS, the web app bails with a server error immediately when browsing to the site.
Parser Error Message: Exception has been thrown by the target of an invocation.
If I view source on the error page I get a bit more info:
[code]....
View 1 Replies
Mar 25, 2011
When running the ASP.NET Development Server, everything is working fine. However, when I deploy my asp.net application to the production server (IIS 7.0 integrated mode, fresh install), my location tags in my web.config file are being ignored.
Case in point: I'm using forms authentication, and when the user arrives at my login.aspx page, the external css & js files are not being loaded...even though I have specified that those files should be available to all users (auth'd or not). However, once the user is logged in, the files do in fact load.
<authentication mode="Forms">
<forms loginUrl="~/Account/Login.aspx" timeout="2880" />
</authentication>
<authorization>
<deny users="?" /> <!-- Restrict anonymouse user access -->
</authorization>
And the exception to my css file...
<location path="Styles/xtools.css">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
I've verified that the path to the css file is accurate.
--EDIT Forgot to mention, I have tried creating a web.config file in the targetted folder as well...still not working.
View 1 Replies
May 21, 2010
This seems to be a standard issue I'm having but cannot resolve with MVC1.0. Could someone tell me if there is anything I need to check as standard to get regular, MVC style, friendly URLs to work, please?I'm on IIS6, XP Pro with the default web site pointing at my web app. I have unchecked "check file exists" under home directory configuration.
View 2 Replies
May 3, 2010
I have one strange issue on SQL Reporting Services admin website (like URL). I am System Administrator as well as the content manager of this site. Under the Contents tab, the links
New Data Source and Upload File is redirecting to https:// site(secured site) which always fail to load. But the links for the New Folder and Report Builder are working fine and redirects to http:// site. I repaired the installation of SQL Server also but there is a same problem.
View 4 Replies
Nov 3, 2010
I am really new her and to asp.net
In fact this is my first asp.net project and I really enjoyed it soo much
When I run the project, it worked form on my machine but when deployed on a remote server, it gives me error and I dont know what the problem is?
I have tried a number of things to no avail
The project is located at http://soft.turingz.com
It uses mysql and my host said they have the .net connector installed but yet .
View 4 Replies
Apr 16, 2010
We have deployed an application in iis 6.o. We set cache for 1 hr in that application so that the updated data in the back-end will be visible by the user after 1 hr. If the requested data not available in cache it will fetch from database directly.
Is there any way that I can clear this cache in between 1 hr for some of our testing.
Resetting the website and app pool and deleting temp asp.net files didn't work, I have tested that.
View 2 Replies
Mar 4, 2011
I developed an application locally using the Visual Studio 2008 built-in web server and it is running nice and neat on every single browser. When we deployed it on the IIS6 and open it on IE8, there are rendering issues. The fonts are bigger than the other browsers (which are still nice and neat) and some components just moved around. The generated HTML is the same as the others.
View 2 Replies
Jun 9, 2010
I'm trying to deply a 3.5 Net application developed in VS Web Express and built using the asp compiler. This works fine when tested using an eval version of Win 2008 Standard server on a VM. However when installing on a production Win 2008 Standard server it fails with the message can not load assembly as it has not been signed or the signature does not match. How come this works in one and not the other? The live server has symantec AV installed and running? If this the reason? Have a bit of knowledge ( as all devlopers do) of OS's but am totally stumped by this. If I could even replicate it on the development machine would allow me to move forward. Do i need full Vis Studio? Do I need to sign the DLLs?
View 2 Replies
Nov 18, 2010
This question kind of follows on froma previous one I posted. I have a .net web site deployed on a server.
In certain circumstances the site falls over. Specifically, when I browse to the site from my PC (which has visual studio) to the web server using a particular dns entry. So, I want to debug a browser session on my PC which is looking to a URL on a web server. How can I do this? Within VS when I attach to Internet Explorer no break point is ever reached?
View 2 Replies
Nov 4, 2010
My application is working correctlywhen I debug it against my sql express.
Now i have deployed on IIS on another machine with win2008 web server and changed the database connection string.I would like that the application uses always the same user to connect to the database and not to use the identity of the connected user.
Error: Cannot open database "XXXXXX" requested by the login. The login failed. Login failed for user 'NT AUTHORITYNETWORK SERVICE'
View 2 Replies
Feb 13, 2011
If same web application is deployed on three different servers, which things we need to take care of and what things should be common amonges all three?
View 3 Replies
Nov 12, 2010
i just deployed my web site to the remote server. I noticed that the menu (navigation) bar is doesn't display as on my local server. I am using visual studio 2010.The stylesheet was also deployed to my remote server. I am using the new asp.net 4 already designed navigation. It works find on my local machine but not on the remote machine.
View 2 Replies
Aug 2, 2010
I'm finally at the point of deploying my ASP.NET 4.0 MVC 2.0 -based web application to the target system and I am getting blank pages for everything - even for the login page. The web application is starting up cleanly without exceptions according to the logs, but none of my MVC routes are ever followed. Instead I get a 200 OK response with an empty page. Here's my environment:
The web application is the root application of a web site. This web site is associated with its own app pool. The pool is set up for .NET 4.0 with a specific local non-privileged user (not the default Network or System user), and this user has read access to the entire web site's tree.I am including System.Web.Mvc as a "Copy Local" reference, which is then in the bin area of the site. I have confirmed that the installed .NET 4.0 already has version 4.0 of the Abstractions and Routing stuff.The web site directory is in the Program Files tree, but any data the application reads and writes is in a different tree, a subdirectory of ProgramData. The app pool's user has read/write access to everything in that subtree. Evidence: the program is logging successfully to a directory in that tree.The site uses HTTPS but I have verified via trace.axd that it is getting through that stuff OK.
Here's what I've seen so far that leads me to suspect a routing problem:
I have a common base class for all my controllers that provides them with common resources. I have a log statement in its constructor, so I should see that in the logs if any of my routes are hit.Nothing is logged if I just give my https://systemname:81/.If I do https://systemname:81/Home/Index, which should be equivalent, I get a blank page from Firefox with a 404 error. (From IE, I get the standard IE 404 page - equivalent meaning.) I do not get the logging in that constructor.If I do https://systemname:81/Home.aspx/Index, I get the ASP.NET default 404 page and no constructor logging.However, if I do https://systemname:81/Home/Index.aspx, I still get the ASP.NET default 404 page, but my controller base class constructor is executed, as evidenced by the log message.
View 9 Replies
Jul 19, 2010
My site is currently running on IIS 7.5. I have installed SQL Server 2008 R2 on it. When working in VS 2010 on my local machine, what should I do to simulate the db during development? And how would I migrate that data to the db that exists on the server? How would I update my app with the new code? Simply re-compile and re-deploy?
View 6 Replies
Sep 30, 2010
This may be a dumb question, but I've got a DLL that I compile and reference locally in a web site project and everything runs just fine. When I deploy this solution to the test server, I get an "Object reference not set to an instance of an object." error and the stack trace displays the files with their paths that are causing the error. The thing is, the paths being displayed are the absolute path as they existed on my development machine. Here's the stack trace:.........................
View 3 Replies
May 21, 2010
unfortunate events we published a web service with the tempuri-namespace a couple of months ago and no one noticed (not in our company, not the companies connecting to the web service) even though it's live since that time and lots of companies (~25 i guess) already access this web service.Now I'm thinking of correcting that mistake and have the namespace fixed to a proper value.The only problem is that as soon as we would do it, all the programs and services connected to this web service would stop working. I can't really allow that to happen.Is there any way to fix the namespace for future purpose or to have the web service operate under two namespaces as one web service?What can I do to get rid of the tempuri-namespace and have it fixed without needing to synchronize the change with all the external companies?
View 2 Replies
Dec 30, 2010
In my deployed web application I am getting the following error:
CS0103: The name 'releaseLionButton_Click' does
not exist in the current context
It identifies this as the offending line:
<asp:Button ID="releaseLionButton" runat="server"
Text="Release the Lion!"
OnClick="releaseLionButton_Click"></asp:Button>
[code]...
View 2 Replies
Apr 21, 2010
I'm experiencing a frustrating problem. I'm developing a website with ASP.NET 3.5 on a windows XP box. When a deploy it to our development server (Windows 2003, .NET 3.5 installed), I notice some forms look just slightly different. I am using the Ajax Control Toolkit as well and I have noticed that controls such as the Modal Popup look jacked up (they are not centered and the drop shadow is not directly behind the popup). Also, I have noticed differences in line wrapping and things like that. This is very frustrating because I think the site looks great and then I deploy it to give demos and some pages look screwed up. I am using the same version of IE when I view it on my local box and on the development box. Looking at the site on my local box (with IE8), it looks great. Looking at the site on the development server (with IE8 as well), it looks jacked up.
View 3 Replies