1
vote
Where can I find examples of element heavy web forms?
Smashing Magazine has a good roundup of CSS based form inspirations / techniques / tutorials.
Check it out …
-2
votes
Is there a way to data bind a single item without eg. a Repeater control?
Use a literal control
<div>
<asp:Literal id="litContent" runat="server" />
</div>
In your code:
private void bind()
{
litCon …
