我收到此错误:
无法将类型'string'隐式转换为'var'
using System.Web.Helpers;
public partial class test : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
var ss = Crypto.HashPassword("1234");
Response.Write(ss);
}
}
答案 0 :(得分:1)
只需将ss
声明为System.String
即可。
根据Crypto.HashPassword
documentation,返回值的类型为System.String