在地址栏加入,能触发__doPostBack()方法吗?
肯定是不行的吗.

解决方案 »

  1.   

    刷新网页的时候不是应该就提交了么
    网页不允许通过地址栏传递参数来修改  所以我就得看看有没有什么小敲门 
    对于这样的网页<script type="text/javascript">
    <!--
    var theForm = document.forms['aspnetForm'];
    if (!theForm) {
        theForm = document.aspnetForm;
    }
    function __doPostBack(eventTarget, eventArgument) {
        if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
            theForm.__EVENTTARGET.value = eventTarget;
            theForm.__EVENTARGUMENT.value = eventArgument;
            theForm.submit();
        }
    }
    // -->
    </script>
    这是他面的script脚本  请问这个脚本是什么意思   初学不是很懂