How to get Last Index Of "%" in a string in C#.NET ? I tried
string subString = content.Substring(0, startIndex);
int nextOpeningComment = subString.LastIndexOf("%", 0);
It is always giving me -1.
Here subString I'm getting is this:
<div id=\"xyz\"> \r\n <img alt=\"\" src=\"App_Themes/Default/Images/abc.jpg\" />\r\n <%--
Any help/suggestions appreciated.

contentandstartIndexin this supposed-failing case? – Marc Gravell♦ Aug 26 at 14:17