|
-
Feb 9th, 2001, 12:33 AM
#1
Thread Starter
Addicted Member
When I reload a IFRAME on my Page on th ONGHANGE event of a select box< I use the line:
onchange="frame1.document.location.replace('MyPage.asp?MyVar=' & form1.cboSelect.value)"
All that loads into the IFRAME is the words "blank 0 "
If I take the form1.cboSelect.value away the correct page displays, but I need to pass the value of that cbo??
Frustrated beyond the piont of strangeling th mouse!!!!!
-
Feb 9th, 2001, 03:21 AM
#2
Hi....
since you a using ASP,
y not u using myValue = Request.Form("value")
Regards,
Mac
-
Feb 9th, 2001, 11:52 AM
#3
Frenzied Member
try with the eval function:
onchange="eval("frame1.document.location.replace('MyPage.asp?MyVar='" + form1.cboSelect.value+"');");"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|