PDA

Click to See Complete Forum and Search --> : What the #@$%*! is "blank0"


wernerh
Feb 8th, 2001, 11:33 PM
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, 02:21 AM
Hi....

since you a using ASP,
y not u using myValue = Request.Form("value")


Regards,
:o Mac :)

sebs
Feb 9th, 2001, 10:52 AM
try with the eval function:

onchange="eval("frame1.document.location.replace('MyPage.asp?MyVar='" + form1.cboSelect.value+"');");"