How to divide a Literal into two parts - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T03:06:50Zhttp://stackoverflow.com/feeds/question/1077389http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1077389/how-to-divide-a-literal-into-two-parts0How to divide a Literal into two partslols2009-07-03T00:53:12Z2009-08-12T17:31:16Z
<p>I am displaying content from my database in my Literal control kept on an asp.net page.</p>
<p>I want to fetch all the data, but using script display only a portion to the user. A link called 'Read More..' will get dynamically added at the end of the text. If the user enjoys reading a portion, he/she can click 'Read More..' and go through the entire article.</p>
<p>How can I create such a functionality?</p>
http://stackoverflow.com/questions/1077389/how-to-divide-a-literal-into-two-parts/1077406#10774060Answer by Andrew Siemer for How to divide a Literal into two partsAndrew Siemer2009-07-03T01:03:24Z2009-07-03T01:03:24Z<p>I suggest that you don't put a literal on the page. To start I would put a PlaceHolder on the page. Then you can shorten the display text which would be added to a Literal which would then be added to the PlaceHolder. Then you can add a HyperLink (or a LinkButton) to the PlaceHolder. When the user clicks the link/button you can reset the data for that PlaceHolder. </p>
http://stackoverflow.com/questions/1077389/how-to-divide-a-literal-into-two-parts/1267573#12675730Answer by Martin for How to divide a Literal into two partsMartin2009-08-12T17:31:16Z2009-08-12T17:31:16Z<p>Kind of along the same lines as Andrew, but with some Javascript:</p>
<p>Cut the literal where you want to, and add in a Hyperlink and a span with display:none.</p>
<pre><code>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor <a href="#" id="readMore">Read More ...</a>
<span id="readMoreText">incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi
ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit
in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui
officia deserunt mollit anim id est laborum.</span>
</code></pre>
<p>You can kind of see it in there. In your Javascript (jQuery), when the #readMore is clicked, have #readMoreText go from display:none to display:inline, and have the hyperlink be display:none.</p>