This is a migrated thread and some comments may be shown as answers.

Dialogs not loading in DNN

1 Answer 78 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Philipp Becker
Top achievements
Rank 2
Philipp Becker asked on 07 Nov 2007, 03:24 PM
What am I doing wrong? I registred the dialog handler in web.config, but when I try to open a dialog the dialog content redirects to the raw url of my current page, with a /Telerik.Web.UI.DialogHandler.aspx at the end

1 Answer, 1 is accepted

Sort by
0
Lini
Telerik team
answered on 07 Nov 2007, 03:41 PM
Hello,

I think this problem is related to the DNN friendly URLs mechanism. Try adding the dialog handler URL to the rewriter rules in the SiteUrls.config file in the DNN root folder. Make sure that you add it at the top so it is executed before the other rules. For example:

<?xml version="1.0" encoding="utf-8" ?> 
<RewriterConfig> 
    <Rules> 
        <RewriterRule> 
            <LookFor>.*Telerik.Web.UI.DialogHandler.aspx(.*)</LookFor> 
            <SendTo>~/Telerik.Web.UI.DialogHandler.aspx$1</SendTo> 
        </RewriterRule> 


Kind regards,
Lini
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Editor
Asked by
Philipp Becker
Top achievements
Rank 2
Answers by
Lini
Telerik team
Share this question
or