Horizontal Bar with 90 stripes on?http://forums.asp.net/t/1798239.aspx/1?Horizontal+Bar+with+90+stripes+on+Mon, 30 Apr 2012 14:27:10 -040017982394957125http://forums.asp.net/p/1798239/4957125.aspx/1?Horizontal+Bar+with+90+stripes+on+Horizontal Bar with 90 stripes on? <p>Hi,</p> <p>On my web page, I would like to put a horizontal bar (line) with 90 stripes on, each stripe indicates a minutes. (Totally 90 minutes) Is there a way to accomplish this?? And then I need to access this minutes from code behind in order to display something on them.</p> <p>Best Regards.</p> 2012-04-29T18:46:09-04:004957471http://forums.asp.net/p/1798239/4957471.aspx/1?Re+Horizontal+Bar+with+90+stripes+on+Re: Horizontal Bar with 90 stripes on? <p>Hi Friend,</p> <p>Check following jQuery sliders</p> <p><a href="http://egorkhmelev.github.com/jslider/">http://egorkhmelev.github.com/jslider/</a></p> <p><a href="http://www.filamentgroup.com/lab/update_jquery_ui_slider_from_a_select_element_now_with_aria_support/">http://www.filamentgroup.com/lab/update_jquery_ui_slider_from_a_select_element_now_with_aria_support/</a></p> <p>The javascript selected value can be assigned to a ASP.Net hidden field using jQuery/JS that can be accesiable in cod ebehind files.</p> 2012-04-30T05:56:42-04:004957596http://forums.asp.net/p/1798239/4957596.aspx/1?Re+Horizontal+Bar+with+90+stripes+on+Re: Horizontal Bar with 90 stripes on? <p>Hi,</p> <p>Thanks for your quick reply. The problem is there won't be any user interaction with the web page (no clicks etc). There gonne be a timer on the page which gets data every minute. So I would like to display any kind of event during the game (goal,yellow/red card etc) on this horizontal bar (or whatever).</p> <p>Best Regards.</p> 2012-04-30T06:59:17-04:004957713http://forums.asp.net/p/1798239/4957713.aspx/1?Re+Horizontal+Bar+with+90+stripes+on+Re: Horizontal Bar with 90 stripes on? <p>Hi Friend,</p> <p>Using&nbsp;<a href="http://egorkhmelev.github.com/jslider/">http://egorkhmelev.github.com/jslider/</a>&nbsp;this you can set the slider value using JS also</p> <p>check the&nbsp;Basic functions section at bottom to set the slider using JS</p> 2012-04-30T08:04:18-04:004957742http://forums.asp.net/p/1798239/4957742.aspx/1?Re+Horizontal+Bar+with+90+stripes+on+Re: Horizontal Bar with 90 stripes on? <p>What say for ASP.Net Chart controls...<a href="http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx">http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx</a>&nbsp;</p> <p>thanks,</p> 2012-04-30T08:23:20-04:004957937http://forums.asp.net/p/1798239/4957937.aspx/1?Re+Horizontal+Bar+with+90+stripes+on+Re: Horizontal Bar with 90 stripes on? <p>Hi ramiramilu,</p> <p>How can I do it with charts? Can show me?</p> 2012-04-30T10:11:35-04:004958387http://forums.asp.net/p/1798239/4958387.aspx/1?Re+Horizontal+Bar+with+90+stripes+on+Re: Horizontal Bar with 90 stripes on? <p>I didn't try this, but here is the idea that can do in your case.</p> <p>Add a user control. You can add just lable/button and put code to populate it as per your requirement.</p> <p>Then replicate this user control 90 times, something like this...</p> <pre class="prettyprint">using System.Web.UI; UserControl uc = (UserControl)LoadControl(&quot;/uc1.ascx&quot;); for(int i = 1; i &lt;= 90; i&#43;&#43;) { this.Page.Controls.Add(uc); } Then you should be able to code as per your need to achieve this.</pre> 2012-04-30T14:27:10-04:00