Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using routing with asp.net 4.0 and Telerik controls with routing. We are using too many editors and spell checkers of telerik controls. These controls require

Telerik.Web.UI.DialogHandler.aspx
Telerik.Web.UI.SpellCheckHandler.axd

These 2 files are calling from different locations.

I want to write a general syntax for

routes.Ignore("Telerik.Web.UI.DialogHandler.aspx");

Right now I am writing too many different paths in the Ignore string.

I want a general syntax for all paths which have "Telerik.Web.UI.DialogHandler.aspx". But HOW?????

share|improve this question

1 Answer

up vote 0 down vote accepted

You can set the DialogHandlerUrl and SpellCheckSettings-AjaxUrl properties of the RadEditors to "~/Telerik.Web.UI.DialogHandler.aspx" and "~/Telerik.Web.UI.SpellCheckHandler.axd" respectively. This way the requests for those files will always have the same base URL (in the root folder of your application) and you will need to write only one ignore to the routes collection. The downside is that you need to modify all your RadEditor instances in the application and add the two properties.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.