Click here to Skip to main content
15,883,606 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
sir,
how to remove html tags from datatable rows.
Posted
Comments
DamithSL 15-May-14 2:45am    
unclear! please give sample input and expected output and explain what you already tried

1 solution

XML
Label xyz = (Label)grd_call_Receive_details.Rows[i].FindControl("lblreceivedetails_get");
                    string text  = Regex.Replace(xyz.Text, "<[^>]*>", String.Empty);
 
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