Now I can''t reply to some posts!

When I try to reply to this post:http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2052064&SiteID=1 I get the following html error in both IE6 and IE7:

Line: 98

Char: 5

Error: Object required.

Code: 0

Url:http://forums.microsoft.com/MSDN/AddPost.aspx?PostID=2052064&SiteID=1&ReturnUrl=

...and the editor does nothing and I cannot reply.

Also forwarded to forums issues alias.

[1410 byte] By [PeterRitchie] at [2008-1-9]
# 1
It's not just you; I can't reply to that post either.
RobertRossney at 2007-10-2 > top of Msdn Tech,Feedback for forums and MSDN websites,Bug Reports for Forums website...
# 2
I had that on some posts too
ahmedilyas at 2007-10-2 > top of Msdn Tech,Feedback for forums and MSDN websites,Bug Reports for Forums website...
# 3

I'm actually able to reply to that post - sure I get the JScript errors but can reply to it.

ahmedilyas at 2007-10-2 > top of Msdn Tech,Feedback for forums and MSDN websites,Bug Reports for Forums website...
# 4
He somehow managed to put buttons from the toolbar into the post. Copy/paste accident I'd guess, I'll fix it. Here's the original HTML:

hey every buddy,<span><a id="_ctl0_MainContent__ctl0_PostForm__ctl3__ctl16" class="rtetbbutton" href="AddPost.aspx?ForumID=59&amp;SiteID=1#"><span class="rtetbBtnSpan" style="overflow: hidden; position: absolute; width: 24px; height: 24px;"></span></a></span>
<br />
<br />I'm using generics and exactely Dictionary&lt;int, List&lt;int&gt;&gt;. and I have a probleme when i try to convert the list into Array.
<br /><span><a id="_ctl0_MainContent__ctl0_PostForm__ctl3__ctl16" class="rtetbbutton" href="AddPost.aspx?ForumID=59&amp;SiteID=1#"><span class="rtetbBtnSpan" style="overflow: hidden; position: absolute; width: 24px; height: 24px;"></span></a></span>
<br />code :
<br />
<br />
<div style="text-align: left;">
<div class="codeseg">
<div class="codecontent">
<div class="codesniptitle"><span style="width: 100%;">Code Snippet</span>
</div>


<br />


private static int[][] DictToJaggedArray(Dictionary&lt;int, List&lt;int&gt;&gt; connectedBodies)
<br /> {
<br /> int[][] results = new int[connectedBodies.Count][];
<br /> int countI = 0;
<br />
<br /> foreach (KeyValuePair&lt;int, List&lt;int&gt;&gt; pair in connectedBodies)
<br /> {
<br /> List&lt;int&gt; list = pair.Value;
<br /> results[countI++] = list.ToArray();
<br /> }
<br /> return results;
<br /> }



<br />


</div>
</div>
<br />
</div>
<br />and when the list contains like 24Million elements the list.ToArray fails and <span style="font-weight: bold;">System.OutOfMemoryException</span> is thrown.
<br />
<br />can you help me.
<br />
<br />Cheers,
<br /><span><a id="_ctl0_MainContent__ctl0_PostForm__ctl3__ctl16" class="rtetbbutton" href="AddPost.aspx?ForumID=59&amp;SiteID=1#"><span class="rtetbBtnSpan" style="overflow: hidden; position: absolute; width: 24px; height: 24px;"></span></a></span><span><a id="_ctl0_MainContent__ctl0_PostForm__ctl3__ctl16" class="rtetbbutton" href="AddPost.aspx?ForumID=59&amp;SiteID=1#"><span class="rtetbBtnSpan" style="overflow: hidden; position: absolute; width: 24px; height: 24px;"></span></a></span>
nobugz at 2007-10-2 > top of Msdn Tech,Feedback for forums and MSDN websites,Bug Reports for Forums website...
# 5

Okay, the Forums bug would be not to allow HTML content like that in the posts.

PeterRitchie at 2007-10-2 > top of Msdn Tech,Feedback for forums and MSDN websites,Bug Reports for Forums website...
# 6
Nah, there's no way to prevent that. The editor just shouldn't crash on properly formatted HTML.
nobugz at 2007-10-2 > top of Msdn Tech,Feedback for forums and MSDN websites,Bug Reports for Forums website...
# 7
That is a good point. I'll open a bug on this issue for the team to review to see if we can prevent this in the future. Thanks!
allends at 2007-10-2 > top of Msdn Tech,Feedback for forums and MSDN websites,Bug Reports for Forums website...
# 8
Everybody is tapping their feet...
nobugz at 2007-10-2 > top of Msdn Tech,Feedback for forums and MSDN websites,Bug Reports for Forums website...