Click here to Skip to main content
16,019,764 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
public void BindGridView(string IncidentZone)
    {
    CDriver objDriver = new CDriver();
    DataTable dt = objDriver.GetDriversForIncident(IncidentZone);
    Session["Smsdata"] = dt;
    if (dt.Rows.Count > 0)
        {
        tblSearchCUser.Visible = true;
        DataView dv = dt.DefaultView;

        gvDriver.DataSource = dt;
        gvDriver.DataBind();
        }


Now I want to bind grid row by row and insert timer between two rows, but timer should called after first row.
So in browser I want the first row of GridView then sleep, then second row then sleep, and so on.

[edit]Tidy up, remove txtspeak (Use proper English, this site is visited by many non-native English speakers. If you use words not in their dictionary, they cannot understand or help you.) Punctuation and capitals (Use proper case - all lower case makes you look childish.) Code block added - OriginalGriff[/edit]
Posted
Updated 25-Oct-10 21:53pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900