Click here to Skip to main content
15,891,902 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Simple way to Design Rating in ASP.NET using JavaScript, CSS[^]

in this article how get the label value in c# code
i use tableie.text.tostring() but get only null value.. any idea?
Posted

1 solution

If you set some values through javascript that values cannot be accessed on server side using simple control properties. You can get the values in the request array post back to server.

C#
string strs = (Request["lblRate"] == null) ? lblRate.Text.ToString() : Request["lblRate"].ToString();



try this.
 
Share this answer
 
v2
Comments
sabodh 2-Feb-13 12:59pm    
the pblm is not solved...get null value only. i use this code with in the btnclick event.

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