However, if some static content and the path of some script files are referenced in the custom control, the custom control must be referenced in different motherboard pages or directories. then the path problem will inevitably occur.
The solution is also simple:
CopyCode The Code is as follows: script language = "JavaScript" type = "text/JavaScript" src = '<% = resolveurl ("~ /JS/media. js ") %> '> </SCRIPT>
<% = Resolveurl ("~ /JS/media. js ") %> '> is the output method for ASP. NET to obtain the absolute path.
In addition:
If path problems exist in JavaScript scripts
The content has been written in the background:Copy codeThe Code is as follows: protected void page_load (Object sender, eventargs E)
{
String SWF = resolveurl ("~ /Images/flash_menu200902.16.swf ");
String menu = resolveurl ("~ /Menu. xml ");
String list = resolveurl ("~ /List. xml ");
This. literal1.text = "Var SWF = \" "+ SWF +" \ "; var menu = \" "+ menu + "\"; vaR list = \ "" + list + "\";";
}
use the literal control in the script: copy Code the code is as follows: