Click here to Skip to main content
15,898,035 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Migration from Oracle 9i to Oracle 11.2 Pin
David Mujica16-Sep-10 3:30
David Mujica16-Sep-10 3:30 
QuestionGood .NET Hosting Companies??? Pin
Daniel Ormisher16-Sep-10 1:08
Daniel Ormisher16-Sep-10 1:08 
AnswerRe: Good .NET Hosting Companies??? Pin
R. Giskard Reventlov16-Sep-10 1:17
R. Giskard Reventlov16-Sep-10 1:17 
AnswerRe: Good .NET Hosting Companies??? Pin
NeverHeardOfMe16-Sep-10 1:36
NeverHeardOfMe16-Sep-10 1:36 
GeneralOne DB, many clients Pin
David Mujica16-Sep-10 3:24
David Mujica16-Sep-10 3:24 
GeneralRe: One DB, many clients Pin
NeverHeardOfMe16-Sep-10 3:34
NeverHeardOfMe16-Sep-10 3:34 
GeneralRe: Good .NET Hosting Companies??? Pin
Daniel Ormisher16-Sep-10 10:00
Daniel Ormisher16-Sep-10 10:00 
Questionurlrewrite - catch all paths on iis Pin
Hanzaplast16-Sep-10 1:07
Hanzaplast16-Sep-10 1:07 
hi guys. i am working on url rewrite module that works fine on Visual Studio asp.net development server, but not on local IIS.
i will minimize my code. here is rewriter class:
public class UrlRewrite : IHttpModule
{
	public void Init(HttpApplication context)
        {
            context.BeginRequest += new EventHandler(context_BeginRequest);
            //context.AuthorizeRequest += new EventHandler(context_BeginRequest);
        }

        void context_BeginRequest(object sender, EventArgs e)
        {
            HttpApplication ha = sender as HttpApplication;
	    //here i want to do some coding

/*
when running on VS development server i can access all paths of all elements on page,
such as "link" path "App_Themes/LayOut.css" or "img" path "Slike/someimage.jpg" and of course main url 
of page "one/two/three" to rewrite it to "Default.aspx?arg1=one&arg2=two&arg3=three"
*/

/*
when i run page on local IIS i can access only main url (context_BeginRequest fires only one time)
so i can rewirte only main url, but i can't rewrite my css, javascript, images and other 
stuffs paths...
*/
        }
}

so question is: how can i access (request) at context_BeginRequest all elements in IIS like i can in VS development server?
QuestionHow to convert document to PDF format in Asp.net using c# Pin
hemananthan15-Sep-10 19:26
hemananthan15-Sep-10 19:26 
AnswerRe: How to convert document to PDF format in Asp.net using c# Pin
Abhijit Jana15-Sep-10 19:45
professionalAbhijit Jana15-Sep-10 19:45 
AnswerRe: How to convert document to PDF format in Asp.net using c# Pin
fjdiewornncalwe16-Sep-10 2:14
professionalfjdiewornncalwe16-Sep-10 2:14 
AnswerRe: How to convert document to PDF format in Asp.net using c# Pin
T M Gray16-Sep-10 9:08
T M Gray16-Sep-10 9:08 
Questionrange validator for text box not taking range properly Pin
Dhyanga15-Sep-10 10:50
Dhyanga15-Sep-10 10:50 
AnswerRe: range validator for text box not taking range properly Pin
Luc Pattyn15-Sep-10 11:06
sitebuilderLuc Pattyn15-Sep-10 11:06 
GeneralRe: range validator for text box not taking range properly Pin
Dhyanga15-Sep-10 11:42
Dhyanga15-Sep-10 11:42 
AnswerRe: range validator for text box not taking range properly Pin
Arun Jacob15-Sep-10 18:58
Arun Jacob15-Sep-10 18:58 
GeneralRe: range validator for text box not taking range properly Pin
Abhijit Jana15-Sep-10 19:21
professionalAbhijit Jana15-Sep-10 19:21 
AnswerRe: range validator for text box not taking range properly Pin
Abhijit Jana15-Sep-10 19:28
professionalAbhijit Jana15-Sep-10 19:28 
AnswerRe: range validator for text box not taking range properly Pin
Dhyanga16-Sep-10 3:02
Dhyanga16-Sep-10 3:02 
Questionone or more web.config Pin
Jassim Rahma15-Sep-10 9:05
Jassim Rahma15-Sep-10 9:05 
AnswerRe: one or more web.config Pin
Dhyanga15-Sep-10 10:31
Dhyanga15-Sep-10 10:31 
AnswerRe: one or more web.config Pin
Arun Jacob15-Sep-10 19:00
Arun Jacob15-Sep-10 19:00 
GeneralRe: one or more web.config Pin
Abhijit Jana15-Sep-10 19:32
professionalAbhijit Jana15-Sep-10 19:32 
AnswerRe: one or more web.config Pin
Abhijit Jana15-Sep-10 19:39
professionalAbhijit Jana15-Sep-10 19:39 
Questiondiff bw Master page and panel ??? Pin
JC.KaNNaN15-Sep-10 1:33
JC.KaNNaN15-Sep-10 1:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.