How to divide a Literal into two parts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:06:50Z http://stackoverflow.com/feeds/question/1077389 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1077389/how-to-divide-a-literal-into-two-parts 0 How to divide a Literal into two parts lols 2009-07-03T00:53:12Z 2009-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#1077406 0 Answer by Andrew Siemer for How to divide a Literal into two parts Andrew Siemer 2009-07-03T01:03:24Z 2009-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#1267573 0 Answer by Martin for How to divide a Literal into two parts Martin 2009-08-12T17:31:16Z 2009-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 &lt;a href="#" id="readMore"&gt;Read More ...&lt;/a&gt; &lt;span id="readMoreText"&gt;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.&lt;/span&gt; </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>