c# - How to stop post back of particular panel reside in grid view row using asp.net -


in c# asp.net implemented selecting row clicking on , doing post have put text box have stop post particular control text box click how can achieve this. aspx code is: in grid view row data bound

            if (e.row.rowtype == datacontrolrowtype.datarow)             {                  e.row.attributes["onclick"] = this.page.clientscript.getpostbackclienthyperlink(this.gvdetails,"select$"+e.row.rowindex);              } } 

if comment line requirement working fine how can stop click text box:

approaches followed 1. particular text box autopostback=false; 2. onclientclick="return false" on text box these 2 not worked for. please me. struggling 3 days.

thanks in advance.


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -