Link to home
Start Free TrialLog in
Avatar of Anthony Matovu
Anthony MatovuFlag for Uganda

asked on

passing a parameter in an aspx url

I am having a this code which is working fine:
dim hl as hyperlink
hl=new hyperlink
hl.text = "delete user"
hl.navigateURL = "~/newuser.aspx"
hl.id = "user" & drd("rid")                   'I am keeping the id of the person on this url
tc.controls.add(hl)                              'tc is a new table cell

Challenge
I want to pass the value drd("rid") to the url "~/newuser.aspx" such that when it opens it shows details of that persons.

Help

Anthony
Avatar of Obadiah Christopher
Obadiah Christopher
Flag of India image

R u talking of querystrings?

"~/newuser.aspx?rid="drd("rid")
Avatar of Anthony Matovu

ASKER

Yes

I little more,

anything more I have to do when the newuser page opens?

ASKER CERTIFIED SOLUTION
Avatar of Obadiah Christopher
Obadiah Christopher
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial