1
Answer

Web or Windows forms [RESOLVED]

Antonio March

Antonio March

14y
1.6k
1
When .NET came out, Web Forms and Windows Forms targeted two different scenarios: Web and Desktop

I wonder if now (with Framework 4 and VB 2010) this is still true or not. In other words, if I plan to program a new application, I must have in mind how EVERY form will be used : only desktop, only internet or both, and decide on a case by case basis how it is developped: Windows Forms or Web Forms.

I would like to receive some advice on that.

thanks
Answers (1)
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.