hi
I use UrlRouting in website:
default.aspx:
protected void LinkbtnclassM_Click(object sender, EventArgs e)
{
LinkButton ImgEdit = (LinkButton)sender;
Response.Redirect("Software/" + ImgEdit.CommandArgument);
}
and global.asax:
static void RegisterRoutes(RouteCollection routes)
{
routes.MapPageRoute("Software", "Software/{Secondclass}", "~/Software.aspx");
}
and in software.aspx it doesn't find script file so I change code like below:
software.aspx:
<script src='<%=ResolveUrl("~/scripts/jquery.dcmegamenu.1.3.3.js" ) %>'></script>
<script src='<%=ResolveUrl("~/scripts/jquery.hoverIntent.minified.js" ) %>'></script>
it worked correctly in FireFox and Chorme but it doesn't work in IE
so what should I do now?
Best Regards
neda