在下面的代碼片段,我創建一個GUID,我也想在其他的方法來使用:使用返回在另一種方法
public string MyActionName()
{
Guid messageId = System.Guid.NewGuid();
string guid = messageId.ToString();
return guid;
}
我已經試過
protected void Page_Load(object sender, EventArgs e)
{
Label2.Text = guid;
}
,但我仍然不能得到它的工作