Link to home
Create AccountLog in
Avatar of lina06
lina06

asked on

Title of a ModelDialog window

I am using a ModelDialog window in classical ASP application.   When the first time  the modal dialog displayed, the title of dialog box is displayed correctly as Title Model Dialog  Web Page Dialog.  When a user clicked on the "btnStart", only
Web Page Dialog.
Please let me know how to resolve this issue.  Here is my code.
'-------------------------------------------------------------
'Page1.asp
'javascript to open dialog box:
'-------------------------------------------------------------
function PrescreenAppl()
{
    var jsfield1 = document.all.txtfield1.value;
    var jcfield2 = document.all.txtfield2.value;
    var jcString = "PageModelDialog.asp?qsfield1=" + jsfield1 + "&qsfield2=" + jcfield2;
    window.showModalDialog(jcString, "",
                  "dialogHeight: 545px; dialogWidth: 700px; status: no;");
     window.location.href = "Page1.asp?qsfield="+jcVacnyID;
}                  
'---------------------------------------------------------------
'PageModelDialog.asp
'----------------------------------------------------------------
Call MainProcess()
'------------------------------------------------------------
Public Sub MainProcess
   IF lTrigerName = "btnStart" AND lTriggerEvent = "OnClick" THEN
         Call btnStart_OnClick()      
    End IF
End Sub

Private Sub btnStart_OnClick
      'some code
End Sub
<HTML>
<HEAD>
<link rel="stylesheet" href="../common/style/hrmenu.css" type="text/css">
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<title>Title Model Dialog </title>  'Can see this tiltel only when the window is displayed the first time
<base target="_self">
<script language="javascript">
function onEvent(triggerName, triggerEvent)
{
     document.forms(0).submit();
}
</script>
</HEAD>
<BODY>
<form name="main" method="post" action="hr5770pc_appPrescreen.asp">
<table class="T1"  align="center" border="1" width="100%" height= "100%">
<tr height="10%">
      <td width="33%" height = "100%" align="right">
            <INPUT type="button" value="<%=lNameStartBtn%>" id=btnStart   name="btnStart"
            onclick="javascript:onEvent(this.name, 'OnClick')"  <%=ldisabled%>  >
      </td>
</tr>
</table>
Avatar of b0lsc0tt
b0lsc0tt
Flag of United States of America image

Look at and provide us the browser source for the page with the problem.  You can see the browser source by right clicking on the web page and choosing View Source.  Let me know if you have a question.

bol
I would think there is something in "  'some code  " that does that.

Avatar of lina06
lina06

ASKER

I cannot view the source for this page.  It is a ModelDialog window.  Correct?
sorry I do not understand what you mean

I see


Private Sub btnStart_OnClick
      'some code
End Sub

so if that is the code then I do not see anything that can change the title

If the form is submitted inside the modal then it is the
hr5770pc_appPrescreen.asp

that clears the title
ASKER CERTIFIED SOLUTION
Avatar of lina06
lina06

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer