parallon
08-25-2006, 07:52 PM
Hello all. I have the following section of code which populates two frames, and What i am trying to do is to pass a variable (highlighted in RED) in the URL, but I am having problems. Can anybody see anything wrong with the following code?
<frameset rows="55%,*" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
<frame NAME="main" SCROLLING="auto" SRC="Availability.asp?EmpId2="&EmpId2 TITLE="Frame Body">
<frame NAME="foot" SCROLLING="auto" SRC="Wolist.asp?First=Y" TITLE="Frame Foot">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
I can hardcode the value with no problem, but I think something is wrong with my syntax for the variable.
Thanks in advance,
Parallon
<frameset rows="55%,*" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
<frame NAME="main" SCROLLING="auto" SRC="Availability.asp?EmpId2="&EmpId2 TITLE="Frame Body">
<frame NAME="foot" SCROLLING="auto" SRC="Wolist.asp?First=Y" TITLE="Frame Foot">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
I can hardcode the value with no problem, but I think something is wrong with my syntax for the variable.
Thanks in advance,
Parallon