up vote 3 down vote favorite
1
share [g+] share [fb]

I'm currently trying to add an MSChart to a partial view in ASP.NET MVC RTM. I have reviewed the following blog entry, and I'm currently investigating Option B. If I take my code an place it inside a View (ASPX) Page and it works fine, but when I copy the exact code into a Partial View (ASCX) I get the following excpetion: "CS1502: The best overloaded method match for 'System.IO.TextWriter.Write(char)' has some invalid arguments ". Has anyone else run into this and solved the issue or do they know why it's impossible to use this strategy with MSChart and MVC?

My code is exactly what's in option B on the linked article.

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

I'm not exactly sure what the problem is, but the most common cause of that error is that you've used a statement inside a "<%= %>" block rather than an expression. Since the code within a "<%= %>" block is placed within a call to System.IO.TextWriter.Write, it must be an expression. Statements must be enclosed within "<% %>" blocks, rather than "<%= %>".

The code you referenced should be working just fine on a partial view, if it runs on a "regular" view. Make sure that the call to RenderPartial is in a "<% %>" block because RenderPartial does not actually return anything, it does the rendering directly in place.

link|improve this answer
I was so focused on the MSChart portion of the code that I never investigated the more basic components, thanks for shedding light on this. +1 (wish I could do more) – JPrescottSanders Apr 15 '09 at 11:17
No problem! Glad that fixed your problem! – Andrew Nurse Apr 15 '09 at 16:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.