Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. Unable to cast object of type 'System.Int32' to type 'System.String'.
  2.  
  3. protected void btnAddToCart_Click(object sender, EventArgs e)
  4. {
  5.  
  6. if (Session["countCart"] != null)
  7. {
  8. Session["countCart"] = (int)Session["countCart"]+1;
  9. lblCount.Text = (string)Session["countCart"];
  10. }
  11. else
  12. {
  13. Session["countCart"] = 0;
  14. lblCount.Text = (string)Session["countCart"];
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement