获取 payu 的 cookie ID
get cookie id for payu
美好的一天,我正在使用 Payu api 付款。我被要求提供的其中一项是“cookie”,如下所示。
cookie image
我怎样才能得到那个字符串?我正在使用 c# mvc asp .NET。谢谢
如果您的意思是如何获取已保存的 cookie 值,我建议您使用这种简单的方法:
string COOKIE_Test = Request.Cookies["Here You Need To Enter The Name Of The Cookie"].value;
示例:
假设我们有一个 cookie 已经保存为名称“Test_Cookie”
所以如果我们想获得“Test_Cookie”的值,我们使用:
string COOKIE_Test = Request.Cookies["Test_Cookie"].value;
希望对兄弟有所帮助
美好的一天,我正在使用 Payu api 付款。我被要求提供的其中一项是“cookie”,如下所示。
cookie image
我怎样才能得到那个字符串?我正在使用 c# mvc asp .NET。谢谢
如果您的意思是如何获取已保存的 cookie 值,我建议您使用这种简单的方法:
string COOKIE_Test = Request.Cookies["Here You Need To Enter The Name Of The Cookie"].value;
示例:
假设我们有一个 cookie 已经保存为名称“Test_Cookie”
所以如果我们想获得“Test_Cookie”的值,我们使用:
string COOKIE_Test = Request.Cookies["Test_Cookie"].value;
希望对兄弟有所帮助