Generating a unique *and* random URL in C#

前端 未结 5 799
孤街浪徒
孤街浪徒 2021-02-08 04:44

My ultimate goal is to create a URL that is unique and cannot be guessed/predicted. The purpose of this URL is to allow users to perform operations like verifying their email ad

5条回答
  •  一个人的身影
    2021-02-08 05:12

    Get md5 of of all the user login credentials and the concatenate it with the guid generated by Guid.NewGuid().ToString() and use it in your url, it should work fine.

提交回复
热议问题