Search Results

6
votes
3answers
1k views

How do I attach the debugger to IIS instead of ASP.NET Development Server?

I have an ASP.NET website and when I press F5 it automatically attaches to the ASP.NET Development Server, how do I attach to IIS worker process instead when I press F5? …
1
vote
2answers
284 views

ASP.NET HTTP handlers and global variables

I have created HTTP handlers. How do I create global variables for these handlers like I can with ASP.net web pages in global.asax? …
0
votes
1answer
365 views

assembly not loading for asp.net web application

I have a web application which references an external .dll (lets call this productA.dll) I have updated my GAC, my web.config, and my references, checked the versions and everything looks c …
1
vote
4answers
1k views

HttpContext.Current is null

I am doing some asynchronous work on a separate thread using: ThreadPool.QueueUserWorkItem(...) and in this separate thread, I need to call HttpContext.Current so that I can access: …
2
votes

In my codebehind class, how do I retrieve the authorized roles?

// set the configuration path to your config file string configPath = "??"; Configuration config = WebConfigurationManager.OpenWebConfiguration(configPath); // Get the object related to t …
0
votes

How to retrieve data from dynamically added textboxes?

To create dynamic controls, I would usually use a ASP.NET PlaceHolder Control and add the dynamic controls to this container. I would give each dynamic control an ID. You can then …