User Alexander Corotchi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T08:21:03Z http://stackoverflow.com/feeds/user/119084 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1764160/jquery-select-random-elements 0 jQuery: select random elements Alexander Corotchi 2009-11-19T15:37:48Z 2009-12-13T04:56:52Z <p>How Can I select the first 5 random elements</p> <pre><code>&lt;ul&gt; &lt;li&gt;First&lt;/li&gt; &lt;li&gt;Second&lt;/li&gt; &lt;li&gt;Third&lt;/li&gt; ... &lt;li&gt;N&lt;/li&gt; &lt;/ul&gt; </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-test 0 Cross browser test Alexander Corotchi 2009-11-06T19:14:09Z 2009-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#1820886 1 Answer by Alexander Corotchi for JQuery TreeView Plug-in SelectedItem Highlighting Alexander Corotchi 2009-11-30T16:33:13Z 2009-11-30T16:33:13Z <pre><code>$('ul.yourclassselected li:last-child').addClass( 'highlight class' ); </code></pre> http://stackoverflow.com/questions/1820811/format-html-document 0 Format HTML document Alexander Corotchi 2009-11-30T16:22:30Z 2009-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-dropdownlist 0 Add item to databound DropDownList Alexander Corotchi 2009-11-29T20:48:10Z 2009-11-29T20:58:07Z <p>Hi, </p> <p>I have dropdownlist control where item lists are coming from database </p> <pre><code>&lt;asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" DataSourceID="SqlDataSource2" DataTextField="semester" DataValueField="semester"&gt; &lt;/asp:DropDownList&gt; </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-gridview 2 ASP.NET - Display Images and pdf in a GridView Alexander Corotchi 2009-11-28T23:40:26Z 2009-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>&lt;asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="ID" DataSourceID="SqlDataSource1"&gt; &lt;Columns&gt; &lt;asp:BoundField DataField="assessment_id" HeaderText="assessment_id" InsertVisible="False" ReadOnly="True" SortExpression="assessment_id" /&gt; &lt;asp:BoundField DataField="a_mime" HeaderText="a_mime" SortExpression="a_mime" /&gt; &lt;asp:TemplateField HeaderText="a_data"&gt; &lt;ItemTemplate&gt; &lt;asp:Image ID="Image1" runat="server" ImageUrl='&lt;%# "Handler.ashx?ID=" + Eval("ID")%&gt;'/&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; &lt;asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="&lt;%$ ConnectionStrings:testConnectionString %&gt;" SelectCommand="SELECT [assessment_id], [a_data], [a_mime] FROM [Assessments]"&gt; &lt;/asp:SqlDataSource&gt; </code></pre> <p><strong>The Handler ASHX:</strong></p> <pre><code>&lt;%@ WebHandler Language="C#" Class="Handler" %&gt; 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-c 0 Upload Images on database .NET, C# Alexander Corotchi 2009-11-28T02:54:20Z 2009-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-type 0 jquery, images type Alexander Corotchi 2009-11-24T17:07:40Z 2009-11-24T17:10:36Z <p>Hi! </p> <p>I'd like to change image type with jquery, for example:</p> <pre><code>&lt;img width="250" height="61" alt="Stack Overflow" src="http://sstatic.net/so/img/logo.png"/&gt; </code></pre> <p>to</p> <pre><code>&lt;a href="/"&gt;&lt;img width="250" height="61" alt="Stack Overflow" src="http://sstatic.net/so/img/logo.gif"/&gt;&lt;/a&gt; </code></pre> <p>To change ".png: in ".gif" (in this case)</p> <p>Thanks !</p> http://stackoverflow.com/questions/1753298/jquery-filter-on-table 0 jQuery, Filter on Table Alexander Corotchi 2009-11-18T02:42:42Z 2009-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> &lt;select class="filter_tb"&gt; &lt;option value=""&gt;All&lt;/option&gt; &lt;option value="6-K"&gt;6-K&lt;/option&gt; &lt;option value="20-F"&gt;20-F&lt;/option&gt; &lt;option value="SC 13G/A"&gt;SC 13G/A&lt;/option&gt; &lt;option value="SC 13G"&gt;SC 13G&lt;/option&gt; &lt;option value="F-10/A"&gt;F-10/A&lt;/option&gt; &lt;option value="F-X"&gt;F-X&lt;/option&gt; &lt;option value="F-10"&gt;F-10&lt;/option&gt; &lt;/select&gt; </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-jquery 1 How do I remove the first character from a link's text with jQuery? Alexander Corotchi 2009-11-06T01:57:47Z 2009-11-07T19:59:48Z <p>I want to remove first character from link's text with jQuery.</p> <pre><code>&lt;span class="test1"&gt; +123.23 &lt;/span&gt; &lt;span class="test2"&gt; -13.23 &lt;/span&gt; </code></pre> <p>I want to remove the "+" and "-" from with jQuery.</p> <p>Output:</p> <pre><code>&lt;span class="test1"&gt; 123.23 &lt;/span&gt; &lt;span class="test2"&gt; 13.23 &lt;/span&gt; </code></pre> http://stackoverflow.com/questions/1534896/c-asp-hyperlink 0 c#, ASP, HyperLink Alexander Corotchi 2009-10-08T00:03:54Z 2009-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 &lt; 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>&lt;asp:TextBox ID="txtReadDocs" runat="server" TextMode="MultiLine" Rows="4"&gt;&lt;/asp:TextBox&gt; </code></pre> <p>Thank You so much!!</p> http://stackoverflow.com/questions/1548091/c-textbox-net 0 C# , textbox, .NET Alexander Corotchi 2009-10-10T14:26:04Z 2009-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-asp 0 C#, Search string, ASP Alexander Corotchi 2009-10-08T23:46:56Z 2009-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#1465315 0 Answer by Alexander Corotchi for how to get a HTML textbox Value into another HtMl table . Alexander Corotchi 2009-09-23T11:00:52Z 2009-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#1465222 0 Answer by Alexander Corotchi for Div height based on content Alexander Corotchi 2009-09-23T10:37:28Z 2009-09-23T10:37:28Z <p>try to change event to click , not "load"</p> http://stackoverflow.com/questions/1457731/calling-varialble-from-another-event 0 calling varialble from another event Alexander Corotchi 2009-09-22T01:40:24Z 2009-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 &gt;= 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-findcontrol 0 C#, FindControl Alexander Corotchi 2009-09-22T00:27:56Z 2009-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 = "&lt;b&gt;The text you entered was: " + TextBox1.Text + ".&lt;/b&gt;"; } } protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { Label Label1 = (Label)Master.FindControl("Label1"); Label1.Text = "&lt;b&gt;You chose &lt;u&gt;" + DropDownList1.SelectedValue + "&lt;/u&gt; from the dropdown menu.&lt;/b&gt;"; } } </code></pre> <p>and UI</p> <pre><code>&lt;%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="labs_test" Title="Untitled Page" %&gt; &lt;asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server"&gt; &lt;/asp:Content&gt; &lt;asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"&gt; Type in text and then click button to display text in a Label that is in the MasterPage.&lt;br /&gt; This is done using FindControl.&lt;br /&gt; &lt;asp:TextBox ID="TextBox1" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Submit" /&gt;&lt;br /&gt; &lt;br /&gt; Choose an item from the below list and it will be displayed in the Label that is in the MasterPage.&lt;br /&gt; This is done using FindControl.&lt;br /&gt; &lt;asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged"&gt; &lt;asp:ListItem&gt;Item 1&lt;/asp:ListItem&gt; &lt;asp:ListItem&gt;Item 2&lt;/asp:ListItem&gt; &lt;asp:ListItem&gt;Item 3&lt;/asp:ListItem&gt; &lt;/asp:DropDownList&gt; &lt;asp:Label ID="Label1" runat="server" Text="Label"&gt;&lt;/asp:Label&gt; &lt;/asp:Content&gt; </code></pre> http://stackoverflow.com/questions/1456701/c-variable-net 0 C# variable, .NET Alexander Corotchi 2009-09-21T20:36:19Z 2009-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> &lt;asp:DropDownList ID="DropDownList1" runat="server" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" AutoPostBack="true" &gt; &lt;asp:ListItem Text="Route A - Toronto to Barrie" Value="RouteA"&gt; &lt;/asp:DropDownList&gt; &lt;asp:Label ID="RouteA" runat="server" Text="42"&gt;&lt;/asp:Label&gt; </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-operations 0 C#, Data Type operations Alexander Corotchi 2009-09-21T02:43:36Z 2009-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-event 1 Calling variable from another event Alexander Corotchi 2009-09-20T03:54:33Z 2009-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-images 0 pngfix jquery, with images Alexander Corotchi 2009-09-14T18:58:39Z 2009-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-jquery 0 datepicker, jquery Alexander Corotchi 2009-09-03T05:03:14Z 2009-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#1164945 1 Answer by Alexander Corotchi for IE6 float sidepanel bug Alexander Corotchi 2009-07-22T12:35:40Z 2009-07-22T12:35:40Z <p>It is problem from <code>&lt;table&gt;</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>&lt;table&gt;</code> tag</p> http://stackoverflow.com/questions/1164635/how-to-enable-or-disable-anchor-tag-using-jquery/1164653#1164653 2 Answer by Alexander Corotchi for how to enable or disable anchor tag using jquery Alexander Corotchi 2009-07-22T11:33:03Z 2009-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#1164101 1 Answer by Alexander Corotchi for Complex CSS Text-Shadow and cross browser compatibility Alexander Corotchi 2009-07-22T09:27:56Z 2009-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 -1 Answer by Alexander Corotchi for Inheriting from another style in a another style Alexander Corotchi 2009-07-22T09:17:38Z 2009-07-22T09:17:38Z <pre><code>&lt;div class="Style1"&gt; &lt;div class="Style2"&gt;bla bla bla&lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1163376/html-css-javascript-editor 1 HTML +CSS +Javascript Editor Alexander Corotchi 2009-07-22T06:28:58Z 2009-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-editors 1 HTML, CSS - classes , Editors Alexander Corotchi 2009-07-22T07:54:57Z 2009-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#1159357 1 Answer by Alexander Corotchi for display text after Html table on same line Alexander Corotchi 2009-07-21T13:57:20Z 2009-07-21T13:57:20Z <pre><code>&lt;table style="width: 250px;float: left;"&gt; &lt;tr&gt; &lt;td&gt;Yes &lt;input type="radio" value="yes" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;No &lt;input type="radio" value="no" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; Some text </code></pre> http://stackoverflow.com/questions/1153005/validation-javascript 1 Validation, javascript Alexander Corotchi 2009-07-20T11:26:20Z 2009-07-20T11:47:10Z <p>I have this code: </p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&gt; &lt;head&gt; &lt;title&gt;sss&lt;/title&gt; &lt;meta http-equiv="content-type" content="text/html; charset=utf-8" /&gt; &lt;script type='text/javascript'&gt; function isAlphabet(obj){ var alphaExp = /[^a-z0-9_-]+/; if(!obj.value.match(alphaExp)){ return true; } else{ alert('the bad symbols'); obj.focus(); return false; } } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form action="/"&gt; &lt;input type='text' id='letters' onblur="isAlphabet(this)"/&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </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#1820859 Comment by Alexander Corotchi on Format HTML document Alexander Corotchi 2009-11-30T16:38:13Z 2009-11-30T16:38:13Z I 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-elements Comment by Alexander Corotchi on jQuery: select random elements Alexander Corotchi 2009-11-19T16:16:05Z 2009-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 awesome http://stackoverflow.com/questions/1764160/jquery-select-random-elements/1764318#1764318 Comment by Alexander Corotchi on jQuery: select random elements Alexander Corotchi 2009-11-19T16:12:11Z 2009-11-19T16:12:11Z But it takes always the first 5 ( http://stackoverflow.com/questions/1764160/jquery-select-random-elements Comment by Alexander Corotchi on jQuery: select random elements Alexander Corotchi 2009-11-19T15:49:09Z 2009-11-19T15:49:09Z No, I can use ! http://stackoverflow.com/questions/1753298/jquery-filter-on-table/1753472#1753472 Comment by Alexander Corotchi on jQuery, Filter on Table Alexander Corotchi 2009-11-18T03:49:40Z 2009-11-18T03:49:40Z thanks, I've already done without filter plugin. http://stackoverflow.com/questions/1753298/jquery-filter-on-table/1753411#1753411 Comment by Alexander Corotchi on jQuery, Filter on Table Alexander Corotchi 2009-11-18T03:34:44Z 2009-11-18T03:34:44Z Thanks, i fixed, Thanks a lot for a good idea... http://stackoverflow.com/questions/1753298/jquery-filter-on-table/1753411#1753411 Comment by Alexander Corotchi on jQuery, Filter on Table Alexander Corotchi 2009-11-18T03:27:31Z 2009-11-18T03:27:31Z something is wrong in script, it is hiding all rows, not just parent row http://stackoverflow.com/questions/1689686/cross-browser-test/1689710#1689710 Comment by Alexander Corotchi on Cross browser test Alexander Corotchi 2009-11-06T19:19:41Z 2009-11-06T19:19:41Z It is not true, there difference beetwean Windows and MAC http://stackoverflow.com/questions/1684939/how-do-i-remove-the-first-character-from-a-links-text-with-jquery/1684958#1684958 Comment by Alexander Corotchi on How do I remove the first character from a link's text with jQuery? Alexander Corotchi 2009-11-06T14:58:56Z 2009-11-06T14:58:56Z Awesome, good idea ! http://stackoverflow.com/questions/1534896/c-asp-hyperlink/1534910#1534910 Comment by Alexander Corotchi on c#, ASP, HyperLink Alexander Corotchi 2009-10-08T00:12:24Z 2009-10-08T00:12:24Z I'm sorry, but I have to do this without javascript, just C#, it is possible ? http://stackoverflow.com/questions/1457567/c-findcontrol/1457615#1457615 Comment by Alexander Corotchi on C#, FindControl Alexander Corotchi 2009-09-22T00:52:41Z 2009-09-22T00:52:41Z Thanks a lot!!!!!!! http://stackoverflow.com/questions/1457567/c-findcontrol/1457578#1457578 Comment by Alexander Corotchi on C#, FindControl Alexander Corotchi 2009-09-22T00:35:45Z 2009-09-22T00:35:45Z I've trie, the same exception http://stackoverflow.com/questions/1457567/c-findcontrol Comment by Alexander Corotchi on C#, FindControl Alexander Corotchi 2009-09-22T00:35:14Z 2009-09-22T00:35:14Z Label1.Text = &quot;&lt;b&gt;You chose &lt;u&gt;&quot; + DropDownList1.SelectedValue + &quot;&lt;/u&gt; from the dropdown menu.&lt;/b&gt;&quot;; http://stackoverflow.com/questions/1456701/c-variable-net/1456721#1456721 Comment by Alexander Corotchi on C# variable, .NET Alexander Corotchi 2009-09-21T21:09:00Z 2009-09-21T21:09:00Z &quot;this.ccc.Text&quot; is null :( http://stackoverflow.com/questions/1456701/c-variable-net/1456718#1456718 Comment by Alexander Corotchi on C# variable, .NET Alexander Corotchi 2009-09-21T21:00:59Z 2009-09-21T21:00:59Z Label label = FindControl(labelId) as Label; after compile, Label labelID (null)