I'll make this short and sweet: I want to generate the NavigateUrl string for a hyperlink in my code, because I create the HyperLink column in my code. So I want to do something like this:

Code:
                Dim hyFactor As HyperLink = DirectCast(Me.gvL.Rows(i).FindControl("hyFactor"), HyperLink)
                hyFactor.Text = sFactor
                hyFactor.NavigateUrl = "Edit_Loss.asp"
sFactor came from a database call I just made.

And that works. The trouble is I want to pass to Edit_Loss.asp two parameters whose values depend on the current row in the grid. So it would look something like:

Edit_Loss.asp?param1={0}&param2={1}, but in vb how do I tell it where to get 0 and 1 from? Is this doable?

Thanks.