Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
362 views

How can I make HttpContext available to be used by my Unit Tests?

I want to write a unit test which tests the function of a class called UploadedFile. The problem I face is this class' static constructor uses HttpContext.Current property and because I am running ...
1
vote
3answers
50 views

Response.TransmitFile and Server.Transfer

I have a ASP.NET app that at one point generates a PDF file and loads the next page. I can easily do this with two separate buttons but it is made much tougher when I try to do this with one button. ...
1
vote
1answer
167 views

HttpServerUtility.UrlTokenDecode only seems to return null

I seem to be having an issue with the HttpServerUtility.UrlTokenDecode(string), as it is constantly returning null, causing the program to crash. From what I have gathered, this method will convert a ...
1
vote
2answers
1k views

Can't find HttpServerUtility class in System.Web in C#

I'm trying to call the HttpServerUtuility.URLDecode function in C# using Visual Studio 2005, but it can't be found. I'm using System.Web properly, but the class doesn't seem to be there. Do I need ...