current code: Response.Redirect("DeviceInformation.aspx?arg=" + e.CommandArgument);
which redirects to a page with a data grid. The argument is passed into a stored proc on a database and the infor is returned in a grid.
What i want, is the same thing, but, open it in a new page.
So something like: Response.OpenNewDamnPage("DeviceInformation.aspx?arg=" + e.CommandArgument);
but unfortunatly that does not exsist.
Thanks in advance for any help!