Guest User

Untitled

a guest
Aug 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. namespace Keith.SimpleCookie
  2. {
  3. [Export(typeof(ISetCookies))]
  4. public class SimpleCookie : ISetCookies
  5. {
  6. public void SetCookie(HttpContext context)
  7. {
  8. context.Response.Cookies.Add(new HttpCookie("Name", context.User.Identity.Name));
  9. }
  10. }
  11. }
Add Comment
Please, Sign In to add comment