Add <HTML: base/> to Then we can right-click the application and choose "view source code" to find the page name.
Example:
<HTML>
<Head>
<Base href = "http: // localhost: 8091/Business/drawbill. jsp">
<Meta http-equiv = "Content-Type" content = "text/html; charset = gb2312">
<Link href = "../CSS/style.css" type = "text/CSS" rel = "stylesheet">
<SCRIPT src = "../JS/public. js" Language = "JavaScript"> </SCRIPT>
<SCRIPT src = "../JS/tablevalidate. js" Language = "JavaScript"> </SCRIPT>
<Title> </title>
<Script language = "JavaScript">
Function submitform (){
VaR rows = Document. All. mmtable. Rows. length;
If (rows <4 ){
Alert ("Sorry, there is no material application information in this ticket. You cannot submit it! ");
Return false;
}
// Verify and submit
If (validate ('billtable', 'left') & validate ('billbottomtable', 'left') & validate ('mmtable', 'top ')){
If (confirm ("this ticket will be submitted to the lead for approval. Are you sure you want to perform the current operation? ")){
Document. theform. Refer. value = 'submitting ...';
Document. theform. refer2.value = 'submitting ...';
Document. theform. Refer. Disabled = true;
Document. theform. refer2.disabled = true;
Document. All. theform. Action = "submitdrawbill. Do ";
Document. All. theform. Submit ();
Return true;
}
}
}
Function saveform (){
If (confirm ("this order will be saved. Are you sure you want to perform the current operation? ")){
Document. theform. Refer. value = 'saving. Please wait ...';
Document. theform. refer2.value = 'saving. Please wait ...';
Document. theform. Refer. Disabled = true;
Document. theform. refer2.disabled = true;
Document. All. theform. Action = "savedrawbill. Do ";
Document. All. theform. Submit ();
Return true;
}
}
</SCRIPT>
</Head>