generate guid in c# mvc 5

generate guid in c# mvc 5

This is basically used for generate new guid randomly. The example as given below.

try
{
  //Generate new NewGuid.
  var guid = Guid.NewGuid();

  //Create URL with above guid
  var lnk= "<a href='" 
                    + Url.Action("ResetPassword"
                    "Account"
                     new { email= emailid, gui= guid }, 
                     "http"
                    + "'>Reset Password</a>";
}
catch (Exception ex)
{
  ViewBag.Message = ex.Message;
}
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^