7
Answers

How we Extract Image from pdf

Sanwar Ranwa

Sanwar Ranwa

7y
338
1
How i extract  image from Pdg and display it in Image in Asp.net Webform 
Answers (7)
0
Sukesh Marla

Sukesh Marla

NA 11.8k 1.2m 12y
in  "PageIndexChanging"  you have to rebind the datagrid as 

protected void grdView_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
    FillGrid();
    grdView.PageIndex = e.NewPageIndex;
    grdView.DataBind();
}

Try this


Check this is correct answer if it helped.