maybe there is sth wrong with my explorer,can't recognize gb2312 code

解决方案 »

  1.   

    try ff ,still have problem,can't read the replay content.
    :(
      

  2.   

    鍐嶈瘯涓€娆?
    鐣欎釜email:[email protected]
      

  3.   

    应该是5-31那天csdn服务器出毛病了.
    没做过那东西,帮楼主顶下.另外,觉得楼主最好把要求,操作过程什么的讲下.
      

  4.   

    原来是服务器的故障
    是这样,我想要一个全js实现的用户调查
    就是在页面上弄一个多选或单选框,让用户提交
    比如这样-----------------------------------
    |您觉得今年哪只球队能获得总冠军? |
    |                                 |
    |马刺 (radiobutton)               |
    |活塞 (radiobutton)               |
    |骑士 (radiobutton)               |
    |                                 |
    |                                 |
    |提交(button)查看结果(button )|
    ----------------------------------
      

  5.   

    不知道说清楚了没有我的信箱:[email protected]也可以站内短信谢谢!
      

  6.   

    可以用ajax异步调用web service实现,web service实现读写(数据库/文件)操作
      

  7.   

    不需要数据库怎么保存结果啊?xml?
    能绘图还不复杂啊
      

  8.   

    http://tools.web888.org/web888_htmljs.htm
      

  9.   

    <HTML><script language="vbscript">
    function checkme()
    for each ob in radio1
    if ob.checked then window.alert ob.value
    next
    end function
    </script><BODY>
    <INPUT name="radio1" type="radio" value="style" checked>style
    <INPUT name="radio1" type="radio" value="barcode">Barcode
    <INPUT type="button" value="check" onclick="checkme()">
    </BODY></HTML>