Tagged Questions

System.Web is a namespace of the .NET framework. It supplies classes and interfaces that enable browser-server communication.

learn more… | top users | synonyms

21
votes
3answers
1k views

What is the use for IHttpHandler.IsReusable?

I'm writing a IHttpHandler and I'll need to implement a IsReusable property. When I look at the MSDN documentation it says: Gets a value indicating whether another request can use the IHttpHandler ...
8
votes
6answers
8k views

Cannot add System.Web.dll reference

I'm trying to use the HTTP functions contained in the System.Web.dll assembly. However, whilst the dll seems to exist in the same directory as every other dll Visual Studio 2010 references in my ...
5
votes
2answers
50 views

System.Web.HttpContext.Current.User.Identity.Name Vs System.Environment.UserName in ASP.Net/C#

What is the difference between System.Web.HttpContext.Current.User.Identity.Name and System.Environment.UserName in the context of a ASP.Net Web Application Project? Here's the code of what I'm ...
4
votes
1answer
1k views

No System.Web In VS2010

In a WPF project, I'm trying to add System.Web as a reference but in Project -> Add Reference -> .NET there's no System.Web. Any ideas? Thanks.
3
votes
0answers
522 views

System.Web.HttpRequest.FillInFormCollection() and System.Web.HttpRequest.GetEntireRawContent() very slow

I've been following performance of my website and out of all slow-executing code (>1s), more than 90% is because of System.Web.HttpRequest.GetEntireRawContent() (called by ...
3
votes
1answer
275 views

system.web functionality in Mono missing?

I need HttpUtility for encoding strings, but it seems it was supported, but no longer. Actually, the whole System.Web is gone. Is there an alternative? I need to Javascript Escape some strings.
3
votes
4answers
231 views

How to reference System.Web namespace?

When i writing: "System.W...", the intellisence isn't show me "System.Web" why?
3
votes
1answer
154 views

Step into .net framework System.Web, 4.0

Is anyone able to successfully load symbols for the 4.0 version of System.Web in Visual Studio 2010? I have seen many tutorials on this but am not able to find symbols that will work. The symbols from ...
2
votes
1answer
27 views

How to keep clean ASP.NET web.config file for a new MVC3/Azure project using only <system.webServer>?

I just created a new project in MVC3 using EF4 code first deployed on Windows Azure. I want to keep my "web.config" file as clean as possible because i't a little complicated to understand all tags it ...
2
votes
3answers
371 views

How do I add System.Web as a reference if I cant find it in the list of references?

I'm working on a project in C#.Net 4.0. I am trying to use HttpUtility.HtmlDecode. To do so, I added using System.Web; to the top of the file. However, no reference to HttpUtility could be found. ...
2
votes
4answers
3k views

.NET Framework 4 Client Profile + System.Web.dll?

I'm currently developing an application for .NET 4 Client Profile, as this is the version that will be present on most home computers through Windows Update. However, I cannot add a reference to ...
2
votes
3answers
765 views

Why can't I find or use UrlEncode in Visual Studio 2010?

I have a string that I'd like to encode into the standard URL format. From what I've found, I should be able to do this via the httpUtility.urlEncode method, but I don't seem to have that available. ...
2
votes
2answers
327 views

Can I detect if SSL/https is enabled for an ASP.NET website from within the site's code?

I'm working on a CMS that can run either with or without https enabled on the webserver. I'd like to be able to detect whether https is enabled or not, so that I can act accordingly (for example, ...
2
votes
3answers
1k views

Problem with <system.web.extensions> config group when upgrading to .NET 4.0

So we've upgraded our site from 3.5 SP1 -> .NET 4. When we ran the site, we got an Internal Server Error (500), stating the following configuration group could not be read: ...
1
vote
4answers
101 views

Get Windows Username in ASP.NET without System.Web

I have a reporting dll that is used in ASP.NET (Windows Authentication) and winforms projects. Sometimes it needs the username so if it was running in ASP.NET it would use: ...
1
vote
1answer
61 views

Why is the ObjectStateFormatter class in the System.Web.UI namespace?

Very straight forward question. As far as I can see from the MSDN page, it seems to be all about serialization and nothing to do with Web! MSDN: ObjectStateFormatter Class
1
vote
2answers
385 views

System.Web.Hosting not found in VS2008

I am trying to make a Cassini-like server for a particular asp.net web application. The Client is not happy with the Cassini interface, so I am just expanding the Cassini code, adding new features, ...
1
vote
1answer
652 views

How to access ASP.Net Session object outside the web project (class library)

I am implementing a custom membership and role providers where I need to store all the role/membership information in the user's session. I am implementing these custom providers inside a class ...
1
vote
2answers
2k views

Can't add a reference to System.Web to my Windows Service aplication

I'm trying to create a Windows Service in VS2010 but can't seem to add System.Web as reference. When I browse for it and add it manually I get an exclamation mark over the reference. I've tried adding ...
0
votes
0answers
29 views

Replacing System.Web Scripts in ASP.NET 3.5

I'm using a control that replaces WebUIValidation.js by adding a ScriptReference to the ScriptManager, which works perfectly in ASP.NET 4.0. Example: var sManager = ScriptManager.GetCurrent(Page); ...
0
votes
0answers
20 views

add reference to System.Web in WcfServiceLibrary

Can you add a refference to System.Web.dll in aWcfServiceLibrary. I want to create a Wcf service that executes a EXE on the server. For this I have the following code: System.Diagnostics.Process ...
0
votes
0answers
34 views

how to add the dll reference in sql server 2008 for SQLCLR implementation

i am creating a UDF SQLCLR function, my problem is i have to use the system.web.dll, and dotnetnuke.dll, but when i create the assembly out of this in sql server, using below code alter assembly ...
0
votes
0answers
94 views

'Specified method is not supported' in System.Web.Helper.Chart

I’m using System.Web.Helper.Chart method in one of my MVC3 application. The method is working fine as far as I am manually giving it values like this: public ActionResult GetRainfallChart() { ...
0
votes
4answers
113 views

System.Web assembly is not found on .net 4.0 version

I updated the .net from 3.5 to 4.0 version, but after update the assembly: System.Web doesn't work more. I'm getting the following error: Warning 1 Could not resolve assembly "System.Web". The ...
0
votes
2answers
60 views

Reflection to avoid System.Web reference

I have a shared reporting dll that is used in both windows and web. I am now trying to move the windows programs to .NET 4 client profile so need to avoid System.Web references. At some points the ...
0
votes
3answers
188 views

Httputility.urldecode replacement in .Net4?

I got an old Program(class library) developed by .Net 2. Recently I want to use that Program in new project which is use .Net4(For new WPF feature's ). so there is a big problem: .Net4 don't ...
0
votes
1answer
56 views

WPF designer fail to load because of System.Web Exception !!

My wpf designer fails to load because it says it cannot find assembly System.web and I don't have any idea what wpf has to do with System.web Any Idea ? Here is one of the XAML Pages : ...
0
votes
4answers
152 views

System.web not have HttpCookie in C#. what's going wrong in WPF

when i want to use HttpCookie who a part of System.Web i found that intellisense does not show them nor they found in reference when i put using System.Web Can someone show me what thing i need to ...
0
votes
1answer
153 views

How do I add assemblies to System.Web Assemblies? How do I derive the syntax?

I'm trying to add a custom HTTP Validator as shown here. I want many sites to share this implementation as an external library. That way as I discover newer/better ways to handle validation, I can ...
0
votes
0answers
74 views

Web Apps can't find System.Web in the GAC

After a month hiatus from a side programming gig, I returned to the project to discover some trouble. First off - the background: I am running Windows 7 Ultimate, VS2008, and had created a web ...
0
votes
2answers
823 views

Difference between “InProc” & “stateServer” mode in SessionState on ASP.NET

like the title shows I want to know what is the difference between "InProc" & "stateServer" mode in SessionState on ASP.NET. Thanks
0
votes
1answer
137 views

Does HttpResponse work in a “using” block with out a explicit response.close()

I was trying to get clarification on this : Method-1: Dim request = CreateRequest(uri) //some uri Dim response = DirectCast(request.GetResponse, HttpWebResponse) response.Close() Method-2: Dim ...
0
votes
4answers
480 views

Can't add System.Data.Linq or System.Web to project

I can't add System.Data.Linq or System.Web to project, each time I do I get a warning symbol yellow !, on the reference Any ideas why? I had it working all okay this morning
0
votes
1answer
86 views

C#/.NET - Help, I have only three classes in my System.Web namespace

I discovered the problem when I got a suggestion to use the System.Web.HttpUtility class for a certain task. Looking at the documentation, I should have about 50 classes in System.Web, but I have ...