Guest User

Untitled

a guest
Oct 8th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1.  
  2. if (temp != null)
  3. {
  4. if (!string.IsNullOrEmpty(temp))
  5. {
  6. Session["IsPartner"] = true;
  7. }
  8. else
  9. {
  10. Session["IsPartner"] = false;
  11. }
  12. }
  13. else
  14. {
  15. Session["IsPartner"] = false;
  16. }
  17.  
  18. _isPartner = (Convert.ToBoolean(Session["IsPartner"]));
Add Comment
Please, Sign In to add comment