tags:

views:

45

answers:

1

Hello. I did read more function but it's not working correctly. I mean I can split my test post and I can cut my string with substring function. And I did this using < !--kamore--> keyword.

But after I cut this with substring and do innerhtml and if there is some html tag before the index the css is going crazy. (< p>< !--kamore-->) I can't solve this. If I'm using regex it just make all of them like text and there is no html tags in my post and it's not good. I mean if there is some links or table in my post they will not showing. They are just text.

Here is my little code.

#region ReadMore

string strContent = drvRow["cont"].ToString();

//strContent = Server.HtmlDecode(strContent);
//strContent = Regex.Replace(strContent, @"</?\w+((\s+\w+(\s*=\s*(?:"".*?""|'.*?'|[^'"">\s]+))?)+\s*|\s*)/?>", string.Empty);

// More extension by kad1r
int kaMoreIndex;
kaMoreIndex = strContent.IndexOf("<!--kamore-->");
if (kaMoreIndex > 0)
{
    if (strContent.Length >= kaMoreIndex)
    {
        aReadMore.Visible = true;
        article.InnerHtml = strContent.Substring(0, kaMoreIndex);
        // if this ends like this there is a problem
        // < p>< !--kamore--> or < div>< !--kamore-->
        // because there is no end of this tag!
    }
    else
    {
        article.InnerHtml = strContent;
    }
}
else
{
    article.InnerHtml = strContent;
}

#endregion
A: 

I fix it. I found this code and after finding I added to my string. Now everything works fine. http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/0f06a2e9-ab09-4692-890e-91a6974725c0

kad1r