CJCannon

Results 5 comments of CJCannon

Nothing to do with IIS sorry! But only getting the error on IE - not Firefox, Chrome or Opera - so it's something to do with IE... So <option selected="selected"...

I can also fix it using jQuery: ``` $(function () { $("option[value='']").attr("value", ""); }); ```

However ``` Dim cqContext As CsQueryHttpContext = WebForms.CreateFromRender(page, renderMethod, writer) Amend(cqContext.Dom, HttpContext.Current.Request.Url.AbsolutePath) cqContext.Render(DomRenderingOptions.QuoteAllAttributes) ``` Doesn't render quotes for attributes with empty values - attribute minimisation is being applied. Please can...

It is valid for my doctype, XHTML 1.0 transitional, according to W3 validator. The purpose is to have a hyperlink to the document if iframes are not supported or are...

The ampsersand is NOT being html encoded, it should be & not just &. All attribute values of html elements should be html encoded. It's a minor thing but it...