c# - Printing Selected Row in Gridview -


is there way print information selected rows in gridview? know how print entire gridview, giving div id...but can't seem figure out how extract information each selected row.

i imagine can adding style row user has selected (ie class="printme"). print style sheet can have style display none rows in gridview, except style have added row.

#mygrid tr {display:none;} #mygrid tr.printme {display:block; } 

Comments

Popular posts from this blog

razor - Is this a bug in WebMatrix PageData? -

c# - How to set Z index when using WPF DrawingContext? -

c# - Cloning WPF controls and object hierarchies -