Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Looking for a custom ASP .NET control were the InnerHTML of a DIV is connected to a databas to fetch the content to render the HTML content from the databas inside the DIV.

Is there one out there I have missed or anyone could tell if its possible to make my own DIV component to make it DataBound?

Thanks, Stefan

share|improve this question
@stefaneE classic asp or asp.net ? – Oscar Mar 17 '10 at 11:04
I'm using 3.5 Asp .Net – StefanE Mar 17 '10 at 11:37
I have actually found an commercial mini-CMS component who does exactly what I wanted(will put in link here if I find it again) but ended up going with mgroves solution of doing it my self. – StefanE May 17 '10 at 7:31

1 Answer

up vote 0 down vote accepted

You can't databind to a div, but you can databind to something like a Repeater, which is mainly good for showing rows of data (i.e. repeating the same markup for multiple data items).

If you just want to show one field from one row, you're probably better off with something like a literal:

<div>
    <asp:Literal id="myLiteral" runat="server" />
</div>

And then in the code behind...

myLiteral.Text = "some string from the database or wherever";
share|improve this answer
1  
Hi and thanks for your reply. What you wrote is a bit what I wanted to avoid, would had been nice to just have my own visual component for displaying databound HTML content. Maybe I worrie to much about opening and closing an Sql Connection to often. I will go ahead creating a general class of fetching the HTML content from the database and bind it to an literal. cheers – StefanE Mar 23 '10 at 8:16
You only need to set the Text once when !IsPostback, so you'd only need to open a Sql Connection once. I should also mention that you can do a runat=server div and set the InnerText/InnerHtml if you prefer. – mgroves Mar 23 '10 at 12:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.