I got it!!!!
GridView1.Caption = HttpContext.Current.Request.QueryString("sort1") & "-" & "Field Office"
Now how can I put Field Office in front of the Request.QueryString?
You cannot use Response.Write in assignment operators
try below
GridView1.Caption = "Field office" & "=" & Request.QueryString("sort1"))
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.