Connecting Tech Pros Worldwide Help | Site Map

How to add the 2nd querystring in web.sitemap

ad
Guest
 
Posts: n/a
#1: Apr 24 '06
I need add two querysting in a node in web.sitemap:

<siteMapNode url="~/LocalReport/RViewer.aspx?sKind=Acc_List"&MyYears=2006
title="WebReport" description="" roles="" />

But the compiler said that I can't use & in the siteMapNode.

How can I add the 2nd querystring in web.sitemap?


Bantha
Guest
 
Posts: n/a
#2: Apr 24 '06

re: How to add the 2nd querystring in web.sitemap


HI

Have a looke here
http://www.extremeexperts.com/Net/FA...inURLLink.aspx

Swanand Mokashi
Guest
 
Posts: n/a
#3: Apr 24 '06

re: How to add the 2nd querystring in web.sitemap


You can use &amp; instead of & and you should be fine as :
<siteMapNode
url="~/LocalReport/RViewer.aspx?sKind=Acc_List&amp;MyYears=2006">
title="WebReport" description="" roles="" />

HTH

--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services




"ad" <flying@wfes.tcc.edu.tw> wrote in message
news:uUxMwN5ZGHA.1196@TK2MSFTNGP03.phx.gbl...[color=blue]
>I need add two querysting in a node in web.sitemap:
>
> <siteMapNode url="~/LocalReport/RViewer.aspx?sKind=Acc_List"&MyYears=2006
> title="WebReport" description="" roles="" />
>
> But the compiler said that I can't use & in the siteMapNode.
>
> How can I add the 2nd querystring in web.sitemap?
>
>[/color]


Closed Thread