Facing two Problems simultaneously
a)Whole Page Refresh
b)Controls inside Gridview like (dropdownlist fails to bind values) and Fileupload control fail to carry file.
step1:
To avoid whole Page refresh:
Used <asyncPostBackTriggers controlId="gv" Eventname="RowDataBound">
If i Used this,Problem (a) solved but Problem (b) persists
step2:
To get values of control inside gridview:
Used <Postbacktriggers ControlId="gv">
If i Use this Problem (b) solved but Problem (a) persists..
How to overcome these?