I would like to create a html helper that would receive as a parameter content of the view, like this:
<% Html.MyTextArea("txt1", () => {%>
content of the view
<%=Html.TextBox("Name") %>
...
<% }) %>
anybody knows how to do this ?
|
I would like to create a html helper that would receive as a parameter content of the view, like this:
anybody knows how to do this ? |
||||
|
I am not sure how it can be done in Web Forms View Engine but check this blog post out: |
|||
|
|
|
Since you've tagged it as MVC, I'm going to propose you could do something like I posted on my blog as a way to get syntax highlighting for templates as the solution would be very similar, IF you don't need to manipulate the inner content and are simply interested in 'wrapping' it in some way (like in a containing element that requires some extra logic). Using the technique, the HtmlHelper method receives the context of the block. The syntax is slightly different from your suggested technique though. For example, you could have something like:
The context is passed to an IDisposable object which includes a Writer (for writing to the current output stream). There, it can output multiple elements or do other manipulation as needed. The Dispose is used to write a close element (if needed). So, you could end up with something like this:
However, as I mentioned this does not provide the inner content to the function itself. As Razor pages render inside out, there's not an effective method to grab the output in the way you're wanting. There are some posts around about caching the output of a Partial to a string (which would mean the inner content in your example would be in another file, an .ascx file), so you might want to look at those. |
|||
|
|
|
One approach is,
|
|||
|
|
|
Do you mean something like this?
You can use this way:
|
|||||
|
%> <%it would render and you would get a string parameter of the generated html – Omu Dec 31 '11 at 8:12