L
Lloyd Dupont
I am developing a special control, in fact it's a <td> tag
however on click I need to submit somedata.
so I write
protected void Render(HtmlTextWriter htw)
{
// ......
htw.Write("<td name='{0}' onclick='javascript:submit()'", UniqueID);
// ..
}
and implement IPostBackEventHandler.
however the method RaisePostBackEvent is never called (although the page is
reload), any ideas ?
however on click I need to submit somedata.
so I write
protected void Render(HtmlTextWriter htw)
{
// ......
htw.Write("<td name='{0}' onclick='javascript:submit()'", UniqueID);
// ..
}
and implement IPostBackEventHandler.
however the method RaisePostBackEvent is never called (although the page is
reload), any ideas ?