-1
我有一個Guid加載了一個用戶從GridView中選擇的ID。傳遞一個指針到另一個頁面ASP.NET
我想此GUID傳遞到另一個頁面,但我不知道如何將它添加到下面的語句:
Response.Redirect("LicenseDetailsView.aspx?idLicense=" guidLicense)
下面是完整的代碼:
Dim dvrLicense As GridViewRow
Dim guidLicense As Guid
dvrLicense = grdAllUserLicense.SelectedRow
guidLicense = StringToGUID(dvrLicense.Cells(1).Text.ToString)
Response.Redirect("LicenseDetailsView.aspx?idLicense=" guidLicense)
變量i想要通過的稱爲:guidLicense。
字符串連接運算符是'&'在VB中,對嗎?無論是那個還是'+'。 – Casey