Click here to Skip to main content
15,886,873 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I had Problem How I can Make Dynamic Site Map
I Followed All Guidelines In This article but I cannot do
i made stored procedure that display value from query string as.

SET QUOTED_IDENTIFIER ON 
GO
SET ANSI_NULLS ON 
GO

ALTER    Proc Navcategory
(
@Category_Id  Int 
)
As
Select Distinct   Categories.Category,Categories.Category_Id
 From Categories
Where Category_Id=@Category_Id

GO
SET QUOTED_IDENTIFIER OFF 
GO
SET ANSI_NULLS ON 
GO


so i want site map display the value which retrieved from query
as

Home<4door.....>
Posted
Updated 7-Apr-10 1:40am
v3

1 solution

Which article are you referring to? Is it an article at CodeProject? If yes then post a message in the forum at the bottom of article.

Anyway you can also check this[^] article.

-Saurabh
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900