I want to use the TextBoxWatermark of the Ajax Control Toolkit. If I use a scriptmanager, the page works alright. However, when I use a ToolkitScriptManager (I read that this is recommended), I get an error. The problem is that one script path is not correct because of url rewriting. The aspx page renders as:
<script src="/myVirtualSite/test.aspx?_TSM_HiddenField_=ScriptManager1_HiddenField&_TSM_CombinedScripts_ ....
Where it should be:
<script src="/test.aspx?_TSM_HiddenField_=ScriptManager1_HiddenField&_TSM_CombinedScripts_ ....
Does anybody know how to solve this problem?