当前位置:编程学习 > C#/ASP.NET >>

关于_dopostback

<td><a href="javascript:__doPostBack('GridView1','Edit$0')">编辑</a></td><td>
  //girdivew 生成的html代码

这段代码是什么意思?

单击的时候扫行girdview1的事件?Edit$0 是什么意思?

编辑的时候是执行的是GridView1_RowEditing事件

--------------------编程问答-------------------- __doPostBack两个参数什么意思。。 --------------------编程问答-------------------- 不会没人知道吗,晕晕 --------------------编程问答-------------------- 狗狗  百毒  MSDN会告诉你很多,这个不是一句话可以说的清的, 不过可以总结出来一句就是:它是asp.net的回发机制 --------------------编程问答-------------------- 事件源和事件参数 --------------------编程问答-------------------- 深入理解 __doPostBack 
http://tech.ccidnet.com/art/1110/20040620/869673_1.html

<input type=hidden name=__EVENTTARGET id=__EVENTTARGET value= /> 


<input type=hidden name=__EVENTARGUMENT id=__EVENTARGUMENT value= /> 


function __doPostBack(eventTarget, eventArgument) { 


if (!theForm.onsubmit || (theForm.onsubmit() != false)) { 


theForm.__EVENTTARGET.value = eventTarget; 


theForm.__EVENTARGUMENT.value = eventArgument; 


theForm.submit(); 









另外


   public class Page : TemplateControl, IHttpHandler
    {
        // 摘要:
        //     一个定义呈现的页中的 EVENTARGUMENT 隐藏字段的字符串。
        [EditorBrowsable(EditorBrowsableState.Never)]
        public const string postEventArgumentID = "__EVENTARGUMENT";
        //
        // 摘要:
        //     一个定义呈现的页中的 EVENTTARGET 隐藏字段的字符串。
        [EditorBrowsable(EditorBrowsableState.Never)]
        public const string postEventSourceID = "__EVENTTARGET";
。。。
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,