Search Results

7
votes
5answers
611 views

Using aspx Rendering Engine to Generate Non-HTML

Is it possible to use the asp templating engine (With the partial code-behind class, dynamic <% ... %> blocks and such) to generate non HTML? I want to have a clean and maintainable way to gener …
5
votes

ASP.net MVC custom string output overloaded operator <%=h

It's not so clean as an operator overload, but I used the following extension method: public static string Safe(this string sz) { return HttpUtility.HtmlEncode(sz); } …
0
votes

Remove the *.cs, *.Designer.cs codebehind files?

Straight out of the box you should be able to delete the .designer.cs and nothing will break. The other code behind can be useful, for instance if you'd like to strongly type your viewdata. …