hey guys
is the following possible to implement in the future ?

Save the following in the file _JSCookies.cshtml of your Shared Views directory

<script type="text/javascript">
    function createCookie(name, value, days) {
      if (days) {
        var date = new Date();
        date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
        var expires = "; expires=" + date.toGMTString();
      }
      else var expires = "";
      document.cookie = name + "=" + value + expires + "; path=/";
    }
</script>


use by adding
  
@Html.Partial("_JSCookies")