hot questions tagged render-html - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T03:40:47Zhttp://stackoverflow.com/feeds/tag?tagnames=render-html&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1434357/different-flavors-of-ie73Different Flavors of IE7diadem2009-09-16T17:23:17Z2009-09-17T01:31:25Z
<p>I have a page that renders differently in each flavor of IE7.</p>
<p>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.</p>
<p>What I need is a list of every version of IE7 out there, and the list of compatibility issues between them. Does anyone know where i can get this?</p>
<p>A way to differentiate between them would be also appreciated, as this obviously requires more tricks than just looking at the useragent browser version (they are all listed as teh same).</p>
http://stackoverflow.com/questions/286132/asp-net-mvc-getting-a-paritial-views-html-from-inside-of-the-controller8ASP.net MVC: Getting a Paritial View's HTML from inside of the controllerHarry2008-11-13T02:53:54Z2009-06-27T12:57:53Z
<p>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.<br />
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.</p>
<p>Is it possible to use a custom 'MVC View User Control' to suit this need? Can I create an instance of a control, pass in the model data and render to html? It would then be a simple matter of rendering and passing back to the calling browser.</p>
http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up0Why would this web page cause IE6 to lock up?Justin Scott2009-02-04T20:44:35Z2009-12-07T20:22:12Z
<p>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 it fine, but others just up and die like they joined a cult and drank the punch. We're at our wits end trying to identify the problem, or even what is special about the computers where it works or doesn't work. Any thoughts?</p>
<p><a href="http://www.centerforsight.net/doctors-staff/providerDisplay.cfm?staID=8" rel="nofollow">http://www.centerforsight.net/doctors-staff/providerDisplay.cfm?staID=8</a></p>
<p>Responses like "why are you using ColdFusion" or "because IE6 sucks" won't help me. Our client is stuck with IE6 for the foreseeable future and needs their web site to work in that version. Any insight into the actual problem are greatly appreciated, however. Thanks in advance!</p>
http://stackoverflow.com/questions/1043952/how-to-implement-a-custom-cell-renderer-for-scrolltable-in-gwt0How to implement a custom cell renderer for ScrollTable in GWTtronda2009-06-25T13:31:32Z2009-06-25T13:31:32Z
<p>I've used the <a href="http://code.google.com/p/google-web-toolkit-incubator/wiki/ScrollTable" rel="nofollow">ScrollTable</a> 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.</p>
<p>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 to implement such a custom renderer?</p>
http://stackoverflow.com/questions/288409/how-do-i-get-the-html-output-of-a-usercontrol-in-net-c3How do I get the HTML output of a UserControl in .NET (C#)?Jon Smock2008-11-13T21:31:30Z2009-05-07T02:58:43Z
<p>If I create a UserControl and add some objects to it, how can I grab the HTML it would render?</p>
<p>ex.</p>
<pre><code>UserControl myControl = new UserControl();
myControl.Controls.Add(new TextBox());
// ...something happens
return strHTMLofControl;
</code></pre>
<p>I'd like to just convert a newly built UserControl to a string of HTML.</p>
<p>Answered (below):</p>
<p>Using <a href="http://stackoverflow.com/questions/288409/how-do-i-get-the-html-output-of-a-usercontrol-in-net-c#288419">azamsharp</a>'s method worked - here's the code example:</p>
<pre><code>TextWriter myTextWriter = new StringWriter();
HtmlTextWriter myWriter = new HtmlTextWriter(myTextWriter);
myControl.RenderControl(myWriter);
return myTextWriter.ToString();
</code></pre>
<p>You'll need to be using System.IO (to get the StringWriter class).</p>
http://stackoverflow.com/questions/334382/usercontrols-rendercontrol-is-asking-for-a-form-tag-in-c-net3UserControl's RenderControl is asking for a form tag in (C# .NET)Jon Smock2008-12-02T15:45:28Z2008-12-03T17:46:00Z
<p>I asked <a href="http://stackoverflow.com/questions/288409/how-do-i-get-the-html-output-of-a-usercontrol-in-net-c">how to render a UserControl's HTML</a> and got the code working for a dynamically generated UserControl.</p>
<p>Now I'm trying to use LoadControl to load a previously generated Control and spit out its HTML, but it's giving me this:</p>
<p><em>Control of type 'TextBox' must be placed inside a form tag with runat=server.</em></p>
<p>I'm not actually adding the control to the page, I'm simply trying to grab its HTML. Any ideas?</p>
<p>Here's some code I'm playing with:</p>
<pre><code>TextWriter myTextWriter = new StringWriter();
HtmlTextWriter myWriter = new HtmlTextWriter(myTextWriter);
UserControl myControl = (UserControl)LoadControl("newUserControl.ascx");
myControl.RenderControl(myWriter);
return myTextWriter.ToString();
</code></pre>
http://stackoverflow.com/questions/623259/server-sided-3d-rendering3Server Sided 3D renderingPaul2009-03-08T08:11:54Z2009-03-08T10:53:38Z
<p><strong>My questions have to do with this very interesting article:</strong>
<a href="http://www.techcrunch.com/2008/07/09/otoy-developing-server-side-3d-rendering-technology/" rel="nofollow">http://www.techcrunch.com/2008/07/09/otoy-developing-server-side-3d-rendering-technology/</a></p>
<p><strong>What they say:</strong>
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 X. It is also claimed that the fasted method is Ajax running on safari (up to 220fps).</p>
<p><strong>What I have done:</strong>
I have pondered about ideas like this before and I have even fooled around with three methods of rendering to the browser. To be clear I never implemented a 3D render but rather used already available images hosted at google, or randomly generate pixels.</p>
<p>My first two attempts were involved hackishly trying to draw each pixel in the browser using div tags or the canvas tag. I used php to do so making it slow in the first place but looping through tens of thousands...millions of pixels would take years in any other language anyway, it took like 7 seconds in php. (the random pixel colors did not significantly increase execution time.</p>
<p>My third attempt involved using multiple images to make the big picture, and I set up a test using a total of ten thumbnails hosted on google where the php script loops through all 10 to randomly display 48 total images on the web page. Every time you press a button the Ajax will call on the php script to re-arrange the images. Running this locally with your cache cleared takes about two seconds to display all the images (0.5 seconds after caching).</p>
<p><strong>The WTF how the hell do those lairs do that?</strong>
Because of my first hand experience and plain conventional logic, what this company claims has to be complete total BS. To do every thing they say and then pass the output over the internet has to take at least 0.5 seconds a frame even with better coding and a faster language. I don't think you could even rewrite a single pixel 220 times over the internet in one second.</p>
<p><strong>So maybe there not lairs, how did they do it?</strong>
I must know before I bust a capillary! How did they pass data so fast to the browser using Ajax, not even considering the 3d processing on the server side. Is it just one fast server constantly pushing out an image(s)? All I ever wanted was 30 fps and look at thos jerks hogign all the netz.</p>