This is a migrated thread and some comments may be shown as answers.

Querystring parameters missing

1 Answer 57 Views
Window
This is a migrated thread and some comments may be shown as answers.
Gopakumar
Top achievements
Rank 1
Gopakumar asked on 19 Jun 2012, 11:17 AM
Hy,

I am specifying my querystring as navigateurl of a window and when retreiving it the parameters are missing.
My code is
Dim url As String = "../ServiceCenter/JobEstimation.aspx?EstNo=" & EstNo & "&Location" & EstLocation & "&Year" & EstYear
rwCustConfirmation.NavigateUrl = url

and when retreiving it i get only Estno=2&Location..
help me

1 Answer, 1 is accepted

Sort by
0
Kevin
Top achievements
Rank 2
answered on 19 Jun 2012, 12:16 PM
Hello Gopakumar,

You're missing the equal sign next to the Location and Year paramters.

Dim url As String = "../ServiceCenter/JobEstimation.aspx?EstNo=" & EstNo & "&Location=" & EstLocation & "&Year=" & EstYear
rwCustConfirmation.NavigateUrl = url

I hope that helps.
Tags
Window
Asked by
Gopakumar
Top achievements
Rank 1
Answers by
Kevin
Top achievements
Rank 2
Share this question
or