1
vote
1answer
210 views
When using the XPath binding expression, can you get back InnerXml rather than InnerText?
I'm binding a control to an XmlDocument and using the "XPath" binding expression to output the data:
<div class="Bio"><%# XPath("Biography") %></div>
…
0
votes
3answers
41 views
What is the most efficient way for a control to determine if it’s rendering in a Web form or a master page?
I have a control that can be placed in a Web form (.aspx) or a Master Page (.master). I want it to function differently depending on which one it's in.
My first thought is to climb the con …
0
votes
2answers
68 views
What part of the ASP.Net framework do you use to execute arbitrary code on every inbound request to IIS?
I'd like to run a discrete chunk of .Net code for each and every request that comes through a certain Web site in IIS. This is completely isolated code -- it doesn't affect anything before or afte …
0
votes
1answer
47 views
Is there an event in the request pipeline where both Request and Response are available and populated?
I need to bind to an event in the request pipeline where both the Request and Response are populated. The Request is simple, but I need the StatusCode off the Response object. At what point in th …
3
votes
2answers
522 views
What are some best practices for managing background threads in IIS?
I have written an HttpModule that spawns a background thread. I'm using the thread like a Scheduled Task that runs in-process, which is really handy.
What are best practices for keeping tr …
0
votes
1answer
53 views
Can a request be handled and ended prematurely, early in the pipeline?
I have an HttpModule that has bound an event handler to EndRequest.
Is there any way to handle the request inside the event handler? Meaning, I don't just want to run code and keep the req …
0
votes
1answer
75 views
How do you persist data from one HTTP module to another and to the eventual handler?
From an HTTP module, is there a way to persist something in the Request to be accessed by a mater module or the eventual handler? Can you "stick" something on the Request as it passes through that …
0
votes
4answers
315 views
How can you change the name of the web.config file and have IIS read from the newly-named file?
Is it possible to configure an IIS site to read ASP.Net settings from a site OTHER than web.config?
We'd like to have three config files in our codebase -- web-dev.config, web-test.config, …
1
vote
1answer
294 views
Why don’t PreSendRequestHeaders and PreSendRequestContent run consistently?
When working with HTTP modules, has anyone noticed that the final two events in the pipeline -- PreSendRequestHeaders and PreSendRequestContent -- don't always run?
I've verified that code …
0
votes
2answers
87 views
How can I tell IIS to compile specific folders independently of the rest of my Web site?
Is there any way to get ASP.Net to compile different folders independently?
I have a Web app that uses some commercial software. The admin UI for this software is in a single folder -- the …
1
vote
5answers
845 views
How can you move ASP.Net controls to different places on the Web form at runtime?
Is there an accepted way to "move" a control.
My client wants to place a certain chunk of markup (representing some visual element) in one of several different places on the page. The loca …
1
vote
7answers
532 views
How do you use Excel server-side?
A client wants to "Web-enable" a spreadsheet calculation -- the user to specify the values of certain cells, then show them the resulting values in other cells.
(They do NOT want to show th …
0
votes
0answers
56 views
Why can’t I set an item in the HttpContext in a module then get it back in my handler?
In an HttpModule, I put an Item in the Context, like this:
HttpContext.Current.Items.Add("MyKey", "Hello world!");
Directly under this code (still inside the modul …
0
votes
1answer
48 views
If not rendering for specific browsers, why use an adapter over extending the ASP.Net controls?
My understand of Control Adapters is that they're designed to allow different HTML rendering for different browsers (thus, you register them in the .browsers file...).
However, it appears p …
3
votes
4answers
273 views
Is it possible to completely negate a “higher” web.config in a subfolder?
Is it possible to completely negate a web.config in a subfolder?
Obviously, I have a web.config in the root.
If I have a subfolder called "MyApp", can I write a bunch of code in the …
