Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to use the UriBuilder ? 1

Status
Not open for further replies.

LarsDahl

Programmer
Mar 3, 2005
9
DK
I've run into a problem using the UriBuilder:
I can set the Fragment property. (you know the #label part.) It works fine.
I can set the Query property. (you know the ?key1=value1&key2=value2 part.)
It works fine.
.. but ...
When I set both the Fragment property and the Query property, it do not include the fragment part in the uri.
When I set both the Query property and the Fragment property, it do not include the query part in the uri.

So ... How do I get both to work with the UriBuilder?
 
Have you read the documentation?

From Setting the Query property to any value, including a null reference (Nothing in Visual Basic), clears the Fragment property.

From Setting the Fragment property to any value, including a null reference (Nothing in Visual Basic), clears the Query property.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top