蹭点分,已经解答。见http://community.csdn.net/Expert/TopicView1.asp?id=4498619

解决方案 »

  1.   

    简单,做一个模式对话框(加载b.asp),然后在文本框的双击事件中打开该模式对话框,并接受其返回值,填入文本框即可
      

  2.   

    a.asp
    <script language=javascript>
    function getValue(oControl)
     {
      var strValue = showModalDialog('Your Url','','dialogWidth:XX;dialogHeight:XX;');
      if(!isNan(strValue))
        oControl.value = strValue;
     }
    </script>
    <input type='text' ondblclick='getValue(this);'>b.asp<script language=javascript>
    function returnValue()
    {
      window.returnValue = ......;
      window.close();
    }
    </script>
    其他的你自己写吧