render-html

ASP.net MVC: Getting a Partial View's HTML from inside of the controller

I have developed a simple mechanism for my mvc website to pull in html via jquery which then populates a specified div. All is well and it looks cool. My problem is that i'm now creating html markup inside of my controller (Which is very easy to do in VB.net btw) I'd rather not mix up the sepparation of concerns. Is it possible to use ...

How do I get the HTML output of a UserControl in .NET (C#)?

If I create a UserControl and add some objects to it, how can I grab the HTML it would render? ex. UserControl myControl = new UserControl(); myControl.Controls.Add(new TextBox()); // ...something happens return strHTMLofControl; I'd like to just convert a newly built UserControl to a string of HTML. Answered (below): Using azams...

UserControl's RenderControl is asking for a form tag in (C# .NET)

I asked how to render a UserControl's HTML and got the code working for a dynamically generated UserControl. Now I'm trying to use LoadControl to load a previously generated Control and spit out its HTML, but it's giving me this: Control of type 'TextBox' must be placed inside a form tag with runat=server. I'm not actually adding the ...

Why would this web page cause IE6 to lock up?

I'm stumped. From what we can tell there is nothing wrong with this page and it renders fine everywhere else (IE7/IE8, FireFox, Opera, Safari, etc). The problem is that if it's loaded in IE6 on Windows XP SP3 it just locks up the browser and it has to be force-closed through task manager in most cases. A few of our test computers load...

Server Sided 3D rendering

My questions have to do with this very interesting article: http://www.techcrunch.com/2008/07/09/otoy-developing-server-side-3d-rendering-technology/ What they say: In this article it is claimed that this company can do amazing server sided 3D rendering all the while displaying the output in the browser using Flash, Ajax, Java or Active...

How to implement a custom cell renderer for ScrollTable in GWT

I've used the ScrollTable widget for GWT and I have a need for a custom cell renderer so I can isolate this code from the rest of the app. I would like to use generics if possible to get it type safe. This cell renderer will take a long as a value and do some calculation before displaying the result. Anyone having a good example on how ...

Different Flavors of IE7

I have a page that renders differently in each flavor of IE7. IE7 for vista is a different version than IE7 for XP, and they have subtle differences between them. This results in having the two versions render my page differently. The same, of course, goes for IE8 in compatibility mode. What I need is a list of every version of IE7 out...