Posts by Ricardo Peres • 136 points
4 posts
-
0
votes1
answer202
viewsA: How to set a default page?
Can’t access a specific. aspx page? The page called automatically should be called default.aspx.
-
1
votes2
answers1145
viewsA: Change Hidden field in form
This query returns the first input below search-form: $('#search-form > input[name=upload-date]') I’d need something like: $('#search-form input[name=upload-date]')…
-
0
votes1
answer153
viewsA: Httpmodule: How to handle Httpapplication errors without Httpcontext?
In the context_Error method you can cast the Sender parameter for Httpapplication and then access the Context property. It may also be an exception that occurs without any HTTP request, for example,…
-
1
votes2
answers398
viewsA: Create modules using Unity (Ioc)
As far as I know, it doesn’t exist. It is however possible to record modules dynamically, and a solution to this problem could be to use something like the MEF (Managed Extensibility Framework),…