Click here to Skip to main content
15,904,638 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
go to this link http://beta.countryonwheels.com/[^]
bellow header menu there is a label which contain->Shopping Cart: ( Show Cart ).and its contain cart item count(This label in master page).now i not use update panel for child page bcoz this label is not update if i use update panel in child page.
Plz give me a way out so ,i can use update panel in child page and and after add every item this label update in master page.
Posted
Comments
Dholakiya Ankit 18-Jul-13 23:11pm    
have you tried xmlhttprequest?
KuntalBose 19-Jul-13 0:30am    
thankx for reply ,i try this and let you know latter

1 solution

I think it will help you
http://msdn.microsoft.com/en-us/library/xxwa0ff0%28v=vs.100%29.aspx[^]


you can also use this:
Label shppingCart = (Label)Master.FindControl("cart1");
shppingCart.Text="your desire result";
 
Share this answer
 
v2
Comments
avikGhosh87 19-Jul-13 0:17am    
you can also use this:
Label shppingCart = (Label)Master.FindControl("cart1");
shppingCart.Text="your desire result";
KuntalBose 19-Jul-13 0:30am    
thankx for reply ,i try this and let you know latter .

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