Click here to Skip to main content
16,012,352 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi ,

I have two pages one ticketlist and another one is createticket .

Whenever i create a ticket without any click the ticketlsit grid should update .

please help me to achieve this.
Posted
Updated 24-Sep-12 18:40pm
v2

1 solution

you can set timer to refresh gridview

or u bind gridview after updating

public void bindgrid()
{
grid1.datasource=ds;
grid1.databind();
}

call this function after updating.......
 
Share this answer
 
Comments
BheemG 27-Sep-12 7:05am    
s it will work fine .....

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