I have a custom error handler in the global.asax\'s Application_Error method, when an error occurs I use the following code to transfer user to the error page:
i googled many samples, all show such code Server.Transfer(\"/default.asp?p=news\") but i get error -An invalid character was sp开发者_高级运维ecified in the Path parameter for the MapPath method.
I am working on a Silverlight Project. When i saved a jpg picture into a memorystream to save it into the Context.InputStream, it is working fine.
I have a custom rewrite module and when specific query string parameters are passed i need to be able to call a server.transfer and not a response.redirect due to adserve software and tracking
I am developing a C#/SQL ASP.NET web application in VS 2008.Currently, I am transferring control from one ASPX file to another:
I am developing a C#/SQL ASP.NET web application in VS 2008.Currently I am using the Server.Transfer method to transfer control from one ASPX.CS file to another ASPX file.The first time through, this
I have a simple form that dynamically presents a data entry form, and the user does a postback and the results are saved to a database.I have created a new version of the form, and based on some infor
I\'m trying to use an UpdatePanel in my ASP.NET application. Unfortunately, it seems that I can\'t do this if I am using Server.Transfer() in my application.
I\'ve got an HTTPModule that does some role-based page access security (I\'m having to retrofit some security into some code that we\'ve acquired).