User Alexander Corotchi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T08:21:03Zhttp://stackoverflow.com/feeds/user/119084http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1764160/jquery-select-random-elements0jQuery: select random elementsAlexander Corotchi2009-11-19T15:37:48Z2009-12-13T04:56:52Z
<p>How Can I select the first 5 random elements</p>
<pre><code><ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
...
<li>N</li>
</ul>
</code></pre>
<p><a href="http://blog.mastykarz.nl/jquery-random-filter/" rel="nofollow">I'm using this plugin</a>:</p>
<pre><code>alert($("li:random").text());
</code></pre>
<p>but it takes all random elements. I only want the first 5.</p>
<p>Or is there another way to do the same thing?</p>
<p>Thanks !</p>
http://stackoverflow.com/questions/1689686/cross-browser-test0Cross browser testAlexander Corotchi2009-11-06T19:14:09Z2009-12-06T07:51:49Z
<p>Hello,</p>
<p>I use Windows OS, how can I test websites in safari (Mac OS), it's possible to test online or another way ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1820843/jquery-treeview-plug-in-selecteditem-highlighting/1820886#18208861Answer by Alexander Corotchi for JQuery TreeView Plug-in SelectedItem HighlightingAlexander Corotchi2009-11-30T16:33:13Z2009-11-30T16:33:13Z<pre><code>$('ul.yourclassselected li:last-child').addClass( 'highlight class' );
</code></pre>
http://stackoverflow.com/questions/1820811/format-html-document0Format HTML documentAlexander Corotchi2009-11-30T16:22:30Z2009-11-30T16:29:51Z
<p>Hello everybody,</p>
<p>I like very much in Viso Studio (Format HTML Document) (CTRL +K, CTRL +D)</p>
<p>But There are the same one for another free editor , I thing in Visio studio express id doesn't exist .</p>
<p>Can I find another free editor or plugin, for example plugin for Notepad++ ..</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1816717/add-item-to-databound-dropdownlist0Add item to databound DropDownListAlexander Corotchi2009-11-29T20:48:10Z2009-11-29T20:58:07Z
<p>Hi, </p>
<p>I have dropdownlist control where item lists are coming from database </p>
<pre><code><asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True"
DataSourceID="SqlDataSource2" DataTextField="semester"
DataValueField="semester">
</asp:DropDownList>
</code></pre>
<p>But I want to add at the beginning 1 list item more "ALL" .. How can I add this one .</p>
<p>Thanks ! </p>
http://stackoverflow.com/questions/1814148/asp-net-display-images-and-pdf-in-a-gridview2ASP.NET - Display Images and pdf in a GridViewAlexander Corotchi2009-11-28T23:40:26Z2009-11-29T05:29:41Z
<p>I want to display in an asp:GridView an "Images" column. The idea is to provide a thumbnails of the image with link to real size image. For some rows, this may alternatively be a PDF document. I'd like the link to be to the PDF. The PDF or image are stored in a SQL database. </p>
<p>Now I have error in Handler (.ashx) file:</p>
<blockquote>
<p>"Invalid attempt to read when no data is present."</p>
</blockquote>
<p>This is my code :</p>
<p><strong>ASP:</strong></p>
<pre><code><asp:GridView ID="GridView1" runat="server"
AutoGenerateColumns="False" DataKeyNames="ID"
DataSourceID="SqlDataSource1">
<Columns>
<asp:BoundField DataField="assessment_id" HeaderText="assessment_id"
InsertVisible="False" ReadOnly="True"
SortExpression="assessment_id" />
<asp:BoundField DataField="a_mime" HeaderText="a_mime" SortExpression="a_mime" />
<asp:TemplateField HeaderText="a_data">
<ItemTemplate>
<asp:Image ID="Image1" runat="server" ImageUrl='<%# "Handler.ashx?ID=" + Eval("ID")%>'/>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:testConnectionString %>"
SelectCommand="SELECT [assessment_id], [a_data], [a_mime] FROM [Assessments]">
</asp:SqlDataSource>
</code></pre>
<p><strong>The Handler ASHX:</strong></p>
<pre><code><%@ WebHandler Language="C#" Class="Handler" %>
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context)
{
SqlConnection con = new SqlConnection();
con.ConnectionString = ConfigurationManager.ConnectionStrings["testConnectionString"].ConnectionString;
// Create SQL Command
SqlCommand cmd = new SqlCommand();
cmd.CommandText = "Select a_data from Assessments where assessment_id =@ID";
cmd.CommandType = System.Data.CommandType.Text;
cmd.Connection = con;
SqlParameter ImageID = new SqlParameter("@ID", System.Data.SqlDbType.Int);
ImageID.Value = Convert.ToInt32(context.Request.QueryString["assessment_id"]);
cmd.Parameters.Add(ImageID);
con.Open();
SqlDataReader dReader = cmd.ExecuteReader();
dReader.Read();
context.Response.BinaryWrite((byte[])dReader["a_data"]);
dReader.Close();
con.Close();
}
</code></pre>
<p>If it is possible, please help me. If it's time-consuming, please provide a link to an example or blog post.</p>
http://stackoverflow.com/questions/1811396/upload-images-on-database-net-c0Upload Images on database .NET, C#Alexander Corotchi2009-11-28T02:54:20Z2009-11-28T03:04:12Z
<p>What is the easiest way to upload images to database using C#?</p>
http://stackoverflow.com/questions/1791493/jquery-images-type0jquery, images typeAlexander Corotchi2009-11-24T17:07:40Z2009-11-24T17:10:36Z
<p>Hi! </p>
<p>I'd like to change image type with jquery, for example:</p>
<pre><code><img width="250" height="61" alt="Stack Overflow" src="http://sstatic.net/so/img/logo.png"/>
</code></pre>
<p>to</p>
<pre><code><a href="/"><img width="250" height="61" alt="Stack Overflow" src="http://sstatic.net/so/img/logo.gif"/></a>
</code></pre>
<p>To change ".png: in ".gif" (in this case)</p>
<p>Thanks !</p>
http://stackoverflow.com/questions/1753298/jquery-filter-on-table0jQuery, Filter on TableAlexander Corotchi2009-11-18T02:42:42Z2009-11-18T03:36:01Z
<p>Hello, </p>
<p>I have 1 problem , I've taken one jquery plugin (filter on table).</p>
<p>This is URL : <a href="http://gregweber.info/projects/demo/flavorzoom.html" rel="nofollow">http://gregweber.info/projects/demo/flavorzoom.html</a></p>
<p>But I have a little bit different case:</p>
<p>Instead (textbox) I use (dropdawn menu)</p>
<pre><code> <select class="filter_tb">
<option value="">All</option>
<option value="6-K">6-K</option>
<option value="20-F">20-F</option>
<option value="SC 13G/A">SC 13G/A</option>
<option value="SC 13G">SC 13G</option>
<option value="F-10/A">F-10/A</option>
<option value="F-X">F-X</option>
<option value="F-10">F-10</option>
</select>
</code></pre>
<p>I'm doing filter by value, but this is a problem: When I select "SC 13G" in the table of course is displaying "SC 13G/A" . </p>
<p>Can I stop this one ? I want to display just "SC 13G" the same one is for "F-10 --- > F-10/A"</p>
<p>This is My jquery selector :</p>
<pre><code>$(function() {
var theTable = $('table.RegulatoryFilingsTable')
$(".filter_tb").change(function() {
$.uiTableFilter( theTable, this.value );
});
});
</code></pre>
<p>If it is possible, help me</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1684939/how-do-i-remove-the-first-character-from-a-links-text-with-jquery1How do I remove the first character from a link's text with jQuery?Alexander Corotchi2009-11-06T01:57:47Z2009-11-07T19:59:48Z
<p>I want to remove first character from link's text with jQuery.</p>
<pre><code><span class="test1"> +123.23 </span>
<span class="test2"> -13.23 </span>
</code></pre>
<p>I want to remove the "+" and "-" from with jQuery.</p>
<p>Output:</p>
<pre><code><span class="test1"> 123.23 </span>
<span class="test2"> 13.23 </span>
</code></pre>
http://stackoverflow.com/questions/1534896/c-asp-hyperlink0c#, ASP, HyperLinkAlexander Corotchi2009-10-08T00:03:54Z2009-10-22T04:50:21Z
<p>Hello,</p>
<p>I create a list with upload files (just .txt files), </p>
<pre><code>blListDocs.Items.Clear();
string pn = Server.MapPath("../Uploads/Data");
string pathToWebAppRoot = Request.ApplicationPath;
string pathToFolder = "/Uploads/Data/";
string urlPath = pathToWebAppRoot + pathToFolder;
String[] fileList = Directory.GetFiles(pn);
for (int i = 0; i < fileList.Length - 1; i++)
{
ListItem li = new ListItem();
li.Text = Path.GetFileName(fileList[i]);
li.Value = urlPath + li.Text;
blListDocs.Items.Add(li);
}
</code></pre>
<p>Now, when I click one item link, the file's content is opening in another Web Page, but I'd like to read clicked file's content in control</p>
<pre><code><asp:TextBox ID="txtReadDocs" runat="server" TextMode="MultiLine" Rows="4"></asp:TextBox>
</code></pre>
<p>Thank You so much!!</p>
http://stackoverflow.com/questions/1548091/c-textbox-net0C# , textbox, .NETAlexander Corotchi2009-10-10T14:26:04Z2009-10-10T15:01:37Z
<p>Hello, </p>
<p>I have a problem, I must to create a way to search the contents of a selected text file wich is displayed in multiple textbox (lblResult.Text). Use a simple search algorithm: Search for the entire search term entered by the user. For example, if the user enters "hello", search only for "hello". If the user enters "hello world", search only for the complete term "hello world", and not the individual "hello" or "world" words/terms. (This makes it easier.) Make your search case-insensitive.</p>
<p>Thanks a lot !!!!</p>
<p>And if it possible to create something event, for example to make bold searched text and go to this line , or something similar!</p>
http://stackoverflow.com/questions/1541155/c-search-string-asp0C#, Search string, ASPAlexander Corotchi2009-10-08T23:46:56Z2009-10-09T00:07:37Z
<p>Hello, </p>
<p>I have a MultiLine textbox, </p>
<pre><code>txtReadDocs.Text;
</code></pre>
<p>I'd like to search the contents of text "txtReadDocs".</p>
<p>To use a simple search algorithm: Search for the entire search term entered by the user. For example, if the user enters "hello", search only for "hello". If the user enters "hello world", search only for the complete term "hello world", and not the individual "hello" or "world" words/terms. (This makes it easier.) Make your search case-insensitive. </p>
<p>Thank You so much !!!!</p>
http://stackoverflow.com/questions/1465280/how-to-get-a-html-textbox-value-into-another-html-table/1465315#14653150Answer by Alexander Corotchi for how to get a HTML textbox Value into another HtMl table . Alexander Corotchi2009-09-23T11:00:52Z2009-09-23T11:00:52Z<p>sorry, but I think that it is not possible to do just by JavaScript !</p>
http://stackoverflow.com/questions/1465203/div-height-based-on-content/1465222#14652220Answer by Alexander Corotchi for Div height based on contentAlexander Corotchi2009-09-23T10:37:28Z2009-09-23T10:37:28Z<p>try to change event to click , not "load"</p>
http://stackoverflow.com/questions/1457731/calling-varialble-from-another-event0calling varialble from another eventAlexander Corotchi2009-09-22T01:40:24Z2009-09-22T02:21:28Z
<p>how I can call a variable (<strong>private Label ccc;</strong>) in another event:</p>
<pre><code>private Label ccc;
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
Label Label1 = FindControlRecursive(Page, DropDownList1.SelectedValue) as Label;
if (Label1 != null)
this.ccc = lblCont;
this.ccc.Text = Label1.Text;
}
public void btnSubmit_Click(object sender, EventArgs e)
{
try
{
this.ccc.Text = lblCont.Text;
int bbb = Convert.ToInt32(lblCont.Text) - Convert.ToInt32(tbEnter.Text);
if (bbb >= 0)
{
lblCont.Text = Convert.ToString(bbb);
}
else
{
ErrorDisplay.Text = "There are not enough tickets";
}
}
catch (Exception ex)
{
ErrorDisplay.Text = ex.Message;
}
}
</code></pre>
<p>I can not call <strong>this.ccc.Text = lblCont.Text;</strong> in "<strong>public void btnSubmit_Clic</strong>k" </p>
<p>It does (Object reference not set to an instance of an object.)</p>
<p>Thakns!!</p>
http://stackoverflow.com/questions/1457567/c-findcontrol0C#, FindControlAlexander Corotchi2009-09-22T00:27:56Z2009-09-22T01:10:50Z
<p>Hello, I'm sorry, for non serious question, but I'm can't understand what it doesn't work:</p>
<p>After compile , I have "Null reference exception", help me </p>
<pre><code>using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
public partial class labs_test : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
if (TextBox1.Text != "")
{
Label Label1 = (Label)Master.FindControl("Label1");
Label1.Text = "<b>The text you entered was: " + TextBox1.Text + ".</b>";
}
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
Label Label1 = (Label)Master.FindControl("Label1");
Label1.Text = "<b>You chose <u>" + DropDownList1.SelectedValue + "</u> from the dropdown menu.</b>";
}
}
</code></pre>
<p>and UI</p>
<pre><code><%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="labs_test" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
Type in text and then click button to display text in a Label that is in the MasterPage.<br />
This is done using FindControl.<br />
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Submit" /><br />
<br />
Choose an item from the below list and it will be displayed in the Label that is
in the MasterPage.<br />
This is done using FindControl.<br />
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
<asp:ListItem>Item 1</asp:ListItem>
<asp:ListItem>Item 2</asp:ListItem>
<asp:ListItem>Item 3</asp:ListItem>
</asp:DropDownList>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</asp:Content>
</code></pre>
http://stackoverflow.com/questions/1456701/c-variable-net0C# variable, .NETAlexander Corotchi2009-09-21T20:36:19Z2009-09-21T21:15:34Z
<p>Hello, I have a problem in C#, Help me please in:</p>
<p>I have a dropdown list and some labels and</p>
<p><strong>each ListItem VALUE from DDL is equal with each label ID</strong></p>
<p>for example </p>
<pre><code> <asp:DropDownList ID="DropDownList1" runat="server" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" AutoPostBack="true" >
<asp:ListItem Text="Route A - Toronto to Barrie" Value="RouteA">
</asp:DropDownList>
<asp:Label ID="RouteA" runat="server" Text="42"></asp:Label>
</code></pre>
<p>QUESTION:</p>
<pre><code> private Label ccc;
public void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
this.ccc.Text = DropDownList1.SelectedValue.ToString();
}
</code></pre>
<p><strong>I my code is not what i Want.</strong></p>
<p>I want to get selectet item value (<strong>DropDownList1.SelectedValue.ToString()</strong>) from DDL and put in some Variable (<strong>this.ccc</strong>) and after that I want to call label with the same ID . </p>
<p><strong>Logical I want Something like this :</strong></p>
<p>this.ccc = DropDownList1.SelectedValue.ToString(); (in My case this.ccc = "RouteA")</p>
<p>this.ccc.Text ="test" (in My case) (this.ccc.Text = "42");</p>
<p>Thank You very much, if You've understood, Please Help me !!</p>
http://stackoverflow.com/questions/1452648/c-data-type-operations0C#, Data Type operationsAlexander Corotchi2009-09-21T02:43:36Z2009-09-21T02:46:29Z
<p>I'm sorry, a know that it is not sow serious ....</p>
<p>i want to do some operation in C#, How I can do this one ?</p>
<pre><code>decimal resultTK = (42 - Convert.ToDecimal(RouteA.Text)) * 21.25 ;
lblResultA.Text = Convert.ToString(resultTK);
</code></pre>
<p>I have some error in Data Type !</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1450265/calling-variable-from-another-event1Calling variable from another eventAlexander Corotchi2009-09-20T03:54:33Z2009-09-20T04:02:31Z
<p>Hi, I want to call a variable from another event, for example </p>
<pre><code> public void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
var ccc = lblTicketsA;
}
public void btnSubmit_Click(object sender, EventArgs e)
{
try
{
ccc.text = "test";
}
catch (Exception ex)
{
lblDisplay.Text = ex.Message;
}
}
</code></pre>
<p>thank you</p>
http://stackoverflow.com/questions/1423305/pngfix-jquery-with-images0pngfix jquery, with imagesAlexander Corotchi2009-09-14T18:58:39Z2009-09-14T19:17:37Z
<p>I use pngfix from jquery : <a href="http://jquery.andreaseberhard.de/pngFix/" rel="nofollow">http://jquery.andreaseberhard.de/pngFix/</a></p>
<p>Everything it's ok, but i have one big problem. When I turn pngfix, in IE6 .png it is transparent, but images's with are changing , They become bigger. I don't know why ?? And it just in IE6 , in other browsers it is okei.</p>
<p>How Can I fix it ???</p>
<p>Thank You !</p>
http://stackoverflow.com/questions/1371502/datepicker-jquery0datepicker, jqueryAlexander Corotchi2009-09-03T05:03:14Z2009-09-03T07:33:36Z
<p>Hello!</p>
<p>I have a datepicker (jquery)</p>
<blockquote>
<p>$("#datepicker").datepicker({</p>
<p>});</p>
</blockquote>
<p>I want to colorize(highlight) some days in this datepicker. And these days i'd like to get from some array !!!!</p>
<p>I dont know, something like this:</p>
<blockquote>
<p>$("#datepicker").datepicker({<br />
highlight:['09/16/2009', 09/12/2009,
08/16/2009 ....] });</p>
</blockquote>
<p>Help me please</p>
<p>Thanks a lot !!! </p>
http://stackoverflow.com/questions/1164873/ie6-float-sidepanel-bug/1164945#11649451Answer by Alexander Corotchi for IE6 float sidepanel bugAlexander Corotchi2009-07-22T12:35:40Z2009-07-22T12:35:40Z<p>It is problem from <code><table></code> tags</p>
<p>You can delete "width" from last 2 tables </p>
<p>width="600"</p>
<p>and </p>
<p>width="731"</p>
<p>You can just delet this width from <code><table></code> tag</p>
http://stackoverflow.com/questions/1164635/how-to-enable-or-disable-anchor-tag-using-jquery/1164653#11646532Answer by Alexander Corotchi for how to enable or disable anchor tag using jquery Alexander Corotchi2009-07-22T11:33:03Z2009-07-22T11:33:03Z<pre><code>$("a").click(function(){
alert('disabled');
return false;
});
</code></pre>
http://stackoverflow.com/questions/1164064/complex-css-text-shadow-and-cross-browser-compatibility/1164101#11641011Answer by Alexander Corotchi for Complex CSS Text-Shadow and cross browser compatibilityAlexander Corotchi2009-07-22T09:27:56Z2009-07-22T09:27:56Z<p>jQuery can Help You </p>
<p><a href="http://kilianvalkhof.com/2008/javascript/text-shadow-in-ie-with-jquery/" rel="nofollow">http://kilianvalkhof.com/2008/javascript/text-shadow-in-ie-with-jquery/</a></p>
<p><a href="http://kilianvalkhof.com/2008/css-xhtml/cross-browser-text-shadow/" rel="nofollow">link text</a></p>
http://stackoverflow.com/questions/1164032/inheriting-from-another-style-in-a-another-style/1164062#1164062-1Answer by Alexander Corotchi for Inheriting from another style in a another styleAlexander Corotchi2009-07-22T09:17:38Z2009-07-22T09:17:38Z<pre><code><div class="Style1">
<div class="Style2">bla bla bla</div>
</div>
</code></pre>
http://stackoverflow.com/questions/1163376/html-css-javascript-editor1HTML +CSS +Javascript EditorAlexander Corotchi2009-07-22T06:28:58Z2009-07-22T08:54:45Z
<p>Hello a look for a good HTML + CSS +Javascript Editor, can you help me ???</p>
<p>I Use OS Windows</p>
<p>Thank you very much !!!!</p>
http://stackoverflow.com/questions/1163725/html-css-classes-editors1HTML, CSS - classes , EditorsAlexander Corotchi2009-07-22T07:54:57Z2009-07-22T08:22:15Z
<p>Hello, I have a project with 1 css file and a lot of templates (.tpl), so I know that in my css file there are a lot of classes which I don't use . How can I find these classes? </p>
<p>Is there an editor, plugin or other way, without searching each class in the whole project?</p>
http://stackoverflow.com/questions/1159337/display-text-after-html-table-on-same-line/1159357#11593571Answer by Alexander Corotchi for display text after Html table on same lineAlexander Corotchi2009-07-21T13:57:20Z2009-07-21T13:57:20Z<pre><code><table style="width: 250px;float: left;">
<tr>
<td>Yes <input type="radio" value="yes" /></td>
</tr>
<tr>
<td>No <input type="radio" value="no" /></td>
</tr>
</table>
Some text
</code></pre>
http://stackoverflow.com/questions/1153005/validation-javascript1Validation, javascriptAlexander Corotchi2009-07-20T11:26:20Z2009-07-20T11:47:10Z
<p>I have this code: </p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>sss</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type='text/javascript'>
function isAlphabet(obj){
var alphaExp = /[^a-z0-9_-]+/;
if(!obj.value.match(alphaExp)){
return true;
}
else{
alert('the bad symbols');
obj.focus();
return false;
}
}
</script>
</head>
<body>
<form action="/">
<input type='text' id='letters' onblur="isAlphabet(this)"/>
</form>
</body>
</html>
</code></pre>
<p><hr /></p>
<p>And I want to show an <code>Alert()</code> displaying only those characters for which validation fails.</p>
<p>For example :</p>
<p>If an input contains symbols like " #abc " , the Alert Message should show only "#". How can this be done?</p>
http://stackoverflow.com/questions/1820811/format-html-document/1820859#1820859Comment by Alexander Corotchi on Format HTML documentAlexander Corotchi2009-11-30T16:38:13Z2009-11-30T16:38:13ZI mean, when I have not so viewable code (no tabs, no space etc...), I don't want to spend time to understand that one, I want to format in normal viewable code .http://stackoverflow.com/questions/1764160/jquery-select-random-elementsComment by Alexander Corotchi on jQuery: select random elementsAlexander Corotchi2009-11-19T16:16:05Z2009-11-19T16:16:05Z<a href="http://blog.mastykarz.nl/jquery-random-filter/" rel="nofollow">blog.mastykarz.nl/jquery-random-filter</a>
but if do You can show me another way, how to select 5 random element , will be awesomehttp://stackoverflow.com/questions/1764160/jquery-select-random-elements/1764318#1764318Comment by Alexander Corotchi on jQuery: select random elementsAlexander Corotchi2009-11-19T16:12:11Z2009-11-19T16:12:11ZBut it takes always the first 5 (http://stackoverflow.com/questions/1764160/jquery-select-random-elementsComment by Alexander Corotchi on jQuery: select random elementsAlexander Corotchi2009-11-19T15:49:09Z2009-11-19T15:49:09ZNo, I can use !http://stackoverflow.com/questions/1753298/jquery-filter-on-table/1753472#1753472Comment by Alexander Corotchi on jQuery, Filter on TableAlexander Corotchi2009-11-18T03:49:40Z2009-11-18T03:49:40Zthanks, I've already done without filter plugin.http://stackoverflow.com/questions/1753298/jquery-filter-on-table/1753411#1753411Comment by Alexander Corotchi on jQuery, Filter on TableAlexander Corotchi2009-11-18T03:34:44Z2009-11-18T03:34:44ZThanks, i fixed, Thanks a lot for a good idea...http://stackoverflow.com/questions/1753298/jquery-filter-on-table/1753411#1753411Comment by Alexander Corotchi on jQuery, Filter on TableAlexander Corotchi2009-11-18T03:27:31Z2009-11-18T03:27:31Zsomething is wrong in script, it is hiding all rows, not just parent row http://stackoverflow.com/questions/1689686/cross-browser-test/1689710#1689710Comment by Alexander Corotchi on Cross browser testAlexander Corotchi2009-11-06T19:19:41Z2009-11-06T19:19:41ZIt is not true, there difference beetwean Windows and MAChttp://stackoverflow.com/questions/1684939/how-do-i-remove-the-first-character-from-a-links-text-with-jquery/1684958#1684958Comment by Alexander Corotchi on How do I remove the first character from a link's text with jQuery?Alexander Corotchi2009-11-06T14:58:56Z2009-11-06T14:58:56ZAwesome, good idea !http://stackoverflow.com/questions/1534896/c-asp-hyperlink/1534910#1534910Comment by Alexander Corotchi on c#, ASP, HyperLinkAlexander Corotchi2009-10-08T00:12:24Z2009-10-08T00:12:24ZI'm sorry, but I have to do this without javascript, just C#, it is possible ?http://stackoverflow.com/questions/1457567/c-findcontrol/1457615#1457615Comment by Alexander Corotchi on C#, FindControlAlexander Corotchi2009-09-22T00:52:41Z2009-09-22T00:52:41ZThanks a lot!!!!!!!http://stackoverflow.com/questions/1457567/c-findcontrol/1457578#1457578Comment by Alexander Corotchi on C#, FindControlAlexander Corotchi2009-09-22T00:35:45Z2009-09-22T00:35:45ZI've trie, the same exceptionhttp://stackoverflow.com/questions/1457567/c-findcontrolComment by Alexander Corotchi on C#, FindControlAlexander Corotchi2009-09-22T00:35:14Z2009-09-22T00:35:14Z Label1.Text = "<b>You chose <u>" + DropDownList1.SelectedValue + "</u> from the dropdown menu.</b>";http://stackoverflow.com/questions/1456701/c-variable-net/1456721#1456721Comment by Alexander Corotchi on C# variable, .NETAlexander Corotchi2009-09-21T21:09:00Z2009-09-21T21:09:00Z"this.ccc.Text" is null :(http://stackoverflow.com/questions/1456701/c-variable-net/1456718#1456718Comment by Alexander Corotchi on C# variable, .NETAlexander Corotchi2009-09-21T21:00:59Z2009-09-21T21:00:59ZLabel label = FindControl(labelId) as Label;
after compile, Label labelID (null)