PassMark Logo
Home » Forum

Announcement

Collapse
No announcement yet.

DotNetNuke Integration

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • DotNetNuke Integration

    I have installed Zoom Search into DNN as described in your instructions. The IFrame page works great.

    I have also added your recommended search box on all pages that links to the IFrame page. It does function but this is where I need some help. My users are complaining that the "enter key" does not submit. This is the code I am currently using:

    <input type="text" name="zoom_query" size="20"><br><br>
    <input type="button" value="Search" onClick="window.location='http://www.mysite.com/tabid/23/Default.aspx?zoom_query=' + this.form.zoom_query.value" >

  • #2
    Try replacing this:

    Code:
    <input type="text" name="zoom_query" size="20">
    With the following:

    Code:
    <input type="text" name="zoom_query" size="20" [B][COLOR=darkgreen]onKeyPress="if (event.keyCode==13) {window.location='http://www.mysite.com/tabid/23/Default.aspx?zoom_query=' + this.form.zoom_query.value; return false;}"[/COLOR][/B]>
    We should probably add this to our FAQ support page.
    --Ray
    Wrensoft Web Software
    Sydney, Australia
    Zoom Search Engine

    Comment

    Working...
    X