Click here to Skip to main content
15,906,463 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
"<a href='articles_comments.aspx?article_id='+article_id>" + entityPriceCount.ToString() + "


in this code i can't access the value of article_id. please help me.
Thanks in advance

i need the result will display + entityPriceCount.ToString() + comments.

But how can i write comments in this line
Posted
Updated 10-Jun-11 19:50pm
v4

change code as below

C++
"<a href='articles_comments.aspx?article_id='" + article_id + "'>" + entityPriceCount.ToString() + "
 
Share this answer
 
Comments
rahul dev123 10-Jun-11 6:11am    
No i can't access yet
Try this .........
<a href='articles_comments.aspx?article_id="+article_id+"'>" + entityPriceCount.ToString() + "



.......... Helped or not ? :)
 
Share this answer
 
Comments
rahul dev123 10-Jun-11 7:49am    
No same problem

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