【发布时间】:2012-02-14 22:12:19
【问题描述】:
我们如何将ImageButton 中的Click 事件在GridView 中传递给httpmodule
对于链接按钮,我正在这样做:
if (request.Form.GetValues("__EVENTTARGET") != null)
{
//If it's a link button execute we can directley check for the params
if (request.Params.Get("__EVENTTARGET").Contains("xyz"))
{
//some Code
}
这不适用于ImageButton。
【问题讨论】:
标签: asp.net httpmodule