Hi,
I am not sure if is it possible or not but I have to change some classes of <li>
tag which I am getting from ascx file.Now the condition which li to change or no is based on html that I am producing with the help of xsl(written in code behind).
I know i can do this with the help of Javascript. But what if I don't wanna use javascript and want to do it wth the help of code behind itself.Is this possible let me explain this with the example also
<li>A</li>
<li>B</li>
<li>C</li>
-----
----
I am getting A,B,C from the user control using Datagrid for it. now In this user control I have xslt and from this xslt I am getting html A,B.... and I want to change classes of li tag of A and B to sth else now.Can I do it withot using javacript. I want to write sth in my codebehind to acheive this...Can anyone tell me how is it possible?? any idea....