User TheVillageIdiot - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T16:14:09Z http://stackoverflow.com/feeds/user/13198 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/583001/improving-performance-of-cluster-index-guid-primary-key 2 Improving performance of cluster index GUID primary key TheVillageIdiot 2009-02-24T18:39:25Z 2009-12-02T10:35:46Z <p>Hi, I've a table with large number of rows (10K+) and it primary key is GUID. The primary key is clustered. The query performance is quite low on this table. Please provide suggestions to make it efficient.</p> http://stackoverflow.com/questions/1817885/jquery-external-links-class/1818951#1818951 0 Answer by TheVillageIdiot for jQuery external links class TheVillageIdiot 2009-11-30T10:15:41Z 2009-11-30T10:15:41Z <p>Please make sure links start with http:// I've tested it with following links:</p> <pre><code>&lt;ul style="list-style:none none outside;"&gt; &lt;li&gt;&lt;a href="http://www.google.com"&gt;Google&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://localhost/EnterKey.html"&gt;Enter Key&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="www.microsoft.com"&gt;Microsoft&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://stackoverflow.com/questions/"&gt;SO&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;script type="text/javascript"&gt; $(function(){ $("a").filter(function(){ return this.hostname &amp;&amp; this.hostname !== location.hostname; }).after("&lt;img src='/images/extlink.gif'/&gt;"); }); &lt;/script&gt; </code></pre> <p>Only first (Google) and last (SO) links show image not the thrid (MS) one.</p> http://stackoverflow.com/questions/1802433/javascript-validation-for-a-dynamic-gridview-have-checkbox/1802700#1802700 0 Answer by TheVillageIdiot for Javascript validation for a dynamic gridview have checkbox TheVillageIdiot 2009-11-26T09:55:44Z 2009-11-26T15:34:11Z <p>First of all go to <a href="http://www.jquery.com" rel="nofollow">jQuery</a> site and download latest version of jQuery. Include this in your page. </p> <p>EDIT:- I'm very sorry it the first solution didn't work for you. Actually when GridView and controls contained in it are rendered, they are wrapped in side don't know what :) Here is aspx code:</p> <pre><code>&lt;asp:GridView ID="gvTest" runat="server" AutoGenerateColumns="false"&gt; &lt;Columns&gt; &lt;asp:TemplateField HeaderText="Checkbox 1"&gt; &lt;ItemTemplate&gt; &lt;asp:CheckBox ID="chkFrist" CssClass="chk1" runat="server" Text='&lt;%# Eval("Chk1") %&gt;' /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;asp:TemplateField HeaderText="Checkbox 2"&gt; &lt;ItemTemplate&gt; &lt;asp:CheckBox ID="chkSecond" CssClass="chk2" runat="server" Text='&lt;%# Eval("Chk2") %&gt;' /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; </code></pre> <p>JS (jQuery), you can add this anywhere before body tag or inside head. I prefer to add scripts just above closing <em>body</em> tag and inclusion of external scripts inside <em>head</em> tag.</p> <pre><code>&lt;script src="jquery-1.3.2.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="jquery-1.3.2-vsdoc2.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { $(".chk1 :checkbox, .chk2 :checkbox").click(function() { checkGrid(this); }); }); function checkGrid(elem) { var chkd = $(elem).attr("checked"); //WHEN YOU SPECIFY CSSCLASS ON CHECKBOX IT IS WRAPPED //INSIDE A SPAN ELEMENT WITH GIVEN CLASS var cls = $(elem).parent().attr("class"); if (chkd) { if (cls == "chk1") $(elem).parents("tr").find(".chk2 :checkbox") .attr('checked', !chkd); else $(elem).parents("tr").find(".chk1 :checkbox") .attr('checked', !chkd); } } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1801905/how-to-fetch-data-from-nested-dictionary-in-c/1801921#1801921 0 Answer by TheVillageIdiot for how to fetch data from nested Dictionary in c# TheVillageIdiot 2009-11-26T06:41:02Z 2009-11-26T06:41:02Z <p>try:</p> <pre><code>string s = dict["key"][_float_]; </code></pre> <p>For getting whole lists you can use nested foreach loops:</p> <pre><code> StringBuilder sb=new StringBuilder(); foreach (var v in dict) { sb.Append(v.Key+"=&gt;&gt;"); foreach (var i in v.Value) { sb.Append(i.Key + ", " + i.Value); } sb.Append(Environment.NewLine); } Console.WriteLine(sb); </code></pre> http://stackoverflow.com/questions/1794932/extract-section-from-json-in-jquery/1794957#1794957 1 Answer by TheVillageIdiot for Extract section from json in jquery TheVillageIdiot 2009-11-25T06:01:50Z 2009-11-25T06:01:50Z <p>say you get json in variable named foo, you can just write foo.stringMap like this:</p> <pre><code>var foo = {"hashcode":[], "stringMap":{":id":"50",":question":"My roof"}, ":size":"2", ":type":"java.util.HashMap", ":typeId":"123"}; alert(foo.stringMap); </code></pre> <p>if you want to have more options to handle it then you can use jquery's json plugin: <a href="http://code.google.com/p/jquery-json/source/browse/trunk/jquery.json.js?r=2" rel="nofollow">jquery.json.js</a></p> http://stackoverflow.com/questions/1794882/export-to-excel-file-from-asp-net/1794922#1794922 3 Answer by TheVillageIdiot for export to excel file from asp.net TheVillageIdiot 2009-11-25T05:49:53Z 2009-11-25T05:49:53Z <p>dear use <a href="http://excelpackage.codeplex.com" rel="nofollow">ExcelPackage</a>. It rocks!!! I've used it in my project. It can take a preformatted excel file and use it as template. It is also very easy to use.</p> http://stackoverflow.com/questions/1794822/remove-last-character-in-id-attribute/1794835#1794835 1 Answer by TheVillageIdiot for remove last character in id attribute TheVillageIdiot 2009-11-25T05:26:28Z 2009-11-25T05:26:28Z <p>try:</p> <pre><code>$("div").each(function(){ var i=$(this).attr("id"); if(i){ i = i.substr(0,i.length-1); $(this).attr("id",i); } }); </code></pre> http://stackoverflow.com/questions/1790095/disable-return-key-outside-textareas-on-a-asp-net-web-page-containing-ajax-code/1794264#1794264 0 Answer by TheVillageIdiot for Disable Return key outside textareas on a Asp.Net web page (containing ajax code) TheVillageIdiot 2009-11-25T02:20:26Z 2009-11-25T02:20:26Z <p>Here is some script I put together yesterday night but was not able to post it as my laptop ran out of battery :( </p> <p>NOTE: I'm using <a href="http://www.jquery.com" rel="nofollow">jQuery</a> for it. But you can easily re-write it to work with pure javascript.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Enter Key&lt;/title&gt; &lt;script src="jquery-1.2.6.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="prompt" style="color:#eeffee;width:50px;height:50px;"&gt;&lt;/div&gt; &lt;textarea id="txt" cols="25" rows="10"&gt;&lt;/textarea&gt; &lt;script type="text/javascript"&gt; $(document).ready(function(){ var ar=$("textarea").add($("input")); var elems=new Array(); var key = 13; $(ar).each(function(){ var i=$(this).attr("id"); if(i &amp;&amp; i!=="") elems.push(i); }); elems.sort(); $().keypress(function(e){ var k=e.keycode || e.which; var id = e.target.id; if(k === key){ if(id){ var ar=$.grep(elems,function(a){ return a==id;}); if(ar.length === 0){ $("#prompt").html("Eating "); return false; }else{ $("#prompt").html("Allowed"); } }else{ $("#prompt").html("Eating "); return false; } } }); }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1789181/jquery-replace-part-of-a-url/1789208#1789208 1 Answer by TheVillageIdiot for jquery replace part of a url TheVillageIdiot 2009-11-24T10:30:42Z 2009-11-24T10:30:42Z <p>try this:</p> <pre><code>function googlemapLinks { var lnk = $('div.gmnoprint a').attr("href"); $('div.gmnoprint a').attr("href",lnk.replace('ll','q')); } </code></pre> http://stackoverflow.com/questions/1780808/save-database-calls-display-one-row-at-a-time/1780820#1780820 1 Answer by TheVillageIdiot for Save database calls - display one row at a time TheVillageIdiot 2009-11-23T02:27:52Z 2009-11-23T02:27:52Z <p>I the set of questions is same for all users then you may consider using application wide caching of questions and responses. For this you may get all the questions in one go or fetch questions first time and then cache it.</p> <p>For per user stuff like saving responses to questions, you can use session object. As you have the questions and their related options in application-wide cache, you can only save question key and selected option in session object.</p> http://stackoverflow.com/questions/1768008/adding-form-elements-using-jquery/1768079#1768079 0 Answer by TheVillageIdiot for Adding form elements using JQuery TheVillageIdiot 2009-11-20T03:08:01Z 2009-11-20T03:08:01Z <p>As far as appending textarea, buttons to selected nodes @Nikita Prokopov's answer will do the trick. But as you want to add <code>callbacks</code> and back-end interactions, the best way to do will be to write a plugin.</p> http://stackoverflow.com/questions/1746330/jquery-popout-div-next-to-element-of-my-choice/1746523#1746523 2 Answer by TheVillageIdiot for jQuery popout div next to element of my choice TheVillageIdiot 2009-11-17T04:10:28Z 2009-11-17T04:10:28Z <p>This works but you have to click in the text-box again to hide it. Though this can be sorted out easily:</p> <pre><code>&lt;div id="divPop" style="z-index:500;position:absolute;display:none;"&gt; Hello World! This is Popup Div. &lt;/div&gt; &lt;input id="txt" type="text" value="" width="200px" height="50px" style="border:2px solid #ffeeee;color:#eeeeff;background-color:#aaeeaa;"/&gt; &lt;script type="text/javascript"&gt; $(document).ready(function(){ $("#txt").popupDiv("#divPop"); }); &lt;/script&gt; </code></pre> <p><hr></p> <pre><code>jQuery.fn.popupDiv = function (divToPop){ var pos=$(this).offset(); var h=$(this).height(); ar w=$(this).width(); $(divToPop).css({ left: pos.left + w + 10, top: pos.top + h + 10 }); $(this).click(function(e){ $(divToPop).css({ left: pos.left + w + 10, top: pos.top + h + 10 }); if ($(divToPop).css('display') !== 'none') { $(divToPop).hide(); } else{ $(divToPop).show(); } }); }; </code></pre> http://stackoverflow.com/questions/1740949/decimal-places-in-js/1741028#1741028 1 Answer by TheVillageIdiot for decimal places in JS TheVillageIdiot 2009-11-16T09:24:00Z 2009-11-16T09:24:00Z <p>change <code>$("#product-subtotal").val(prodSubTotal);</code> </p> <p>to <code>$("#product-subtotal").val(addDecimals(prodSubTotal));</code></p> <p>and change <code>$("#product-subtotal").val(prodSubTotal);</code></p> <p>to <code>$("#product-subtotal").val(addDecimals(prodSubTotal));</code></p> <pre><code>function addDecimals(a){ a += ""; var i=a.indexOf('.'); if(i&lt;0){ return a + ".00"; } var j = a.substring(i); console.log(j); if(j.length&lt;3){ for(var k=j.length;k&lt;3;k++) a+='0'; return a; } if(j.length&gt;3){ return a.substring(0, i)+j.substring(0,3); } } </code></pre> http://stackoverflow.com/questions/1740783/open-popup-and-poulate-it-with-data-from-parent-window/1740940#1740940 2 Answer by TheVillageIdiot for Open popup and poulate it with data from parent window? TheVillageIdiot 2009-11-16T09:04:46Z 2009-11-16T09:04:46Z <p>Parent Window:</p> <pre><code>&lt;span id="popup"&gt; Click to Open Popup &lt;/span&gt; &lt;script type="text/javascript"&gt; var ar=new Array("Item 1", "Item 2", "Item 3", "Item 4", "Item 5", "Item 6", "Item 7", "Item 8", "Item 9", "Item 10"); function getArray(){ return ar; } $(document).ready(function(){ $("span#popup").click(function(){ var p=window.open("Popup.html"); }); }); &lt;/script&gt; </code></pre> <p>Popup Window:</p> <pre><code>&lt;ul id="list"&gt;&lt;/ul&gt; &lt;script type="text/javascript"&gt; if(window.opener &amp;&amp; !window.opener.closed){ var ar= window.opener.getArray(); var items=""; for(var i=0;i&lt;ar.length;i++){ items +="&lt;li&gt;" + ar[i] + "&lt;/li&gt;"; } $("ul#list").html(items); } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1727912/how-to-correct-a-jquery-syntax-error/1727933#1727933 0 Answer by TheVillageIdiot for How to correct a jQuery syntax error? TheVillageIdiot 2009-11-13T08:38:50Z 2009-11-13T08:38:50Z <p>change:</p> <pre><code>var v = $(this).attr("title").substr(-1) * 1 </code></pre> <p>to</p> <pre><code>var v = $(this).attr("title").substr(1) * 1 </code></pre> http://stackoverflow.com/questions/1727812/how-to-detect-when-a-shortcut-key-is-pressed-in-javascript/1727880#1727880 0 Answer by TheVillageIdiot for how to detect when a shortcut key is pressed in javascript TheVillageIdiot 2009-11-13T08:24:32Z 2009-11-13T08:24:32Z <p>Please read <a href="http://unixpapa.com/js/key.html" rel="nofollow">this document</a> for details.</p> http://stackoverflow.com/questions/1721261/changing-activeindex-numeric-to-text/1721384#1721384 1 Answer by TheVillageIdiot for Changing activeindex numeric to text TheVillageIdiot 2009-11-12T10:44:29Z 2009-11-12T10:44:29Z <p>write simple mapping function which returns corresponding alphabet.</p> http://stackoverflow.com/questions/910863/using-transactions-with-subsonic 3 Using transactions with subsonic TheVillageIdiot 2009-05-26T14:03:44Z 2009-11-12T10:17:08Z <p>In my web application I've to keep audit of the user actions. So whenever user takes an action I update the object on which action is taken and keep audit trail of that action. </p> <p>Now If I first modify the object and then update audit trail but the audit trail fails then what?</p> <p>Obviously I need to roll-back changes to modified object. I can use Sql-Transactions in simple application, but I'm using Subsonic to talk to db. How I can handle the situation?</p> http://stackoverflow.com/questions/1721026/object-being-passed-to-function-but-not-being-received-why/1721194#1721194 1 Answer by TheVillageIdiot for Object being passed to Function, but not being received... why? TheVillageIdiot 2009-11-12T10:02:49Z 2009-11-12T10:02:49Z <p>what the hell is this?</p> <pre><code>Public Sub New(ByVal logid As Integer, ByVal log As String, ByVal staffid As Integer, ByVal logdate As DateTime) End Sub </code></pre> <p>change it to this:</p> <pre><code>Public Sub New(ByVal logid As Integer, ByVal log As String, ByVal staffid As Integer, ByVal logdate As DateTime) _logid = logid _staffid = staffid _logdate = logdate End Sub </code></pre> http://stackoverflow.com/questions/1720300/how-do-i-serialize-a-child-class/1720728#1720728 0 Answer by TheVillageIdiot for How do I serialize a child class? TheVillageIdiot 2009-11-12T08:24:45Z 2009-11-12T08:24:45Z <p>If you mean when you serialize type <code>A</code>, any objects of type <code>B</code> are also serialized then it is not possible. </p> <p>For this you need to have a mechanism that tracks objects of type <code>B</code> created and also some way to keep relationship between object of type <code>A</code> and type <code>B</code>. </p> <p>If <code>A</code> or <code>B</code> are used independently of each other then I don't see any need for this.</p> http://stackoverflow.com/questions/1719636/how-to-capture-mousemove-events-beneath-child-controls/1719722#1719722 1 Answer by TheVillageIdiot for How to capture mousemove events beneath child controls. TheVillageIdiot 2009-11-12T03:36:36Z 2009-11-12T03:36:36Z <p>try this:</p> <pre><code>public partial class Form1 : Form { public Form1() { InitializeComponent(); AddMouseMoveHandler(this); } private void AddMouseMoveHandler(Control c) { c.MouseMove += MouseMoveHandler; if(c.Controls.Count&gt;0) { foreach (Control ct in c.Controls) AddMouseMoveHandler(ct); } } private void MouseMoveHandler(object sender, MouseEventArgs e) { lblXY.Text = string.Format("X: {0}, Y:{1}", e.X, e.Y); } } </code></pre> http://stackoverflow.com/questions/1719606/generic-method-syntax-clarification/1719629#1719629 3 Answer by TheVillageIdiot for Generic method syntax clarification TheVillageIdiot 2009-11-12T03:06:53Z 2009-11-12T03:06:53Z <p>1) No, <code>Static void Sample&lt;T&gt;(T a,T b)</code> does not enforce all parameters to be of type T. You can have other parameters in method arguments also. EDIT:- You can have Sample(T a, int b, string s) (if this is what you mean)</p> <p>2) Yes, <code>Static void Sample(T a,T b)</code> is non-generic and compiler will throw exception about type T (if you don't have a classed named T)</p> http://stackoverflow.com/questions/1714717/getting-latitude-and-longitude-without-a-gps-windows-mobile/1714739#1714739 0 Answer by TheVillageIdiot for Getting latitude and longitude without a GPS (Windows Mobile) TheVillageIdiot 2009-11-11T11:56:51Z 2009-11-11T11:56:51Z <p>Yes even I wonder when GPS is not working (like when I'm inside office or a shopping mall) but Google Maps gives almost accurate position. I suspect it uses information provided by aGPS (Assisted GPS) servers to GPS. GPS systems on most mobile phones are also using this technology.</p> http://stackoverflow.com/questions/1713414/scaffold-in-subsonic/1713498#1713498 2 Answer by TheVillageIdiot for scaffold in subsonic TheVillageIdiot 2009-11-11T06:53:53Z 2009-11-11T06:53:53Z <p>Setup all the Subsonic stuff (like the configuration etc.). In you page register controls:</p> <pre><code>&lt;%@ Register Assembly="SubSonic" Namespace="SubSonic" TagPrefix="subsonic" %&gt; </code></pre> <p>Here is simplest way to use scaffold:</p> <pre><code>&lt;subsonic:Scaffold ID="Scaffold1" runat="server" TableName="Table_Name"&gt; &lt;/subsonic:Scaffold&gt; </code></pre> http://stackoverflow.com/questions/1712670/what-is-the-difference-between-window-presentation-foundation-and-wcf-which-is-n/1712690#1712690 2 Answer by TheVillageIdiot for What is the difference between Window Presentation Foundation and WCF? Which is newer? TheVillageIdiot 2009-11-11T02:47:33Z 2009-11-11T02:47:33Z <p>From Microsoft websites:</p> <p><a href="http://msdn.microsoft.com/en-us/netframework/aa663324.aspx" rel="nofollow">Windows Communication Foundation</a> is...</p> <p>a part of the .NET Framework that provides a unified programming model for rapidly building service-oriented applications that communicate across the web and the enterprise..</p> <p><hr></p> <p><a href="http://msdn.microsoft.com/en-us/library/ms754130.aspx" rel="nofollow">Windows Presentation Foundation</a> </p> <p>Windows Presentation Foundation (WPF) provides developers with a unified programming model for building rich Windows smart client user experiences that incorporate UI, media, and documents.</p> http://stackoverflow.com/questions/1709014/date-increase-in-asp-net/1709322#1709322 2 Answer by TheVillageIdiot for date increase in asp.net TheVillageIdiot 2009-11-10T16:38:25Z 2009-11-10T16:38:25Z <p>Please use <a href="http://www.jquery.com" rel="nofollow">jQuery</a>. Get <a href="http://www.datejs.com" rel="nofollow">datejs</a> then its all breeze!</p> <pre><code>&lt;span class="spBtn" increment="-1"&gt;&amp;lt;&lt;/span&gt; &lt;span id="spDate"&gt;11\11\2009&lt;/span&gt; &lt;span class="spBtn" increment="1"&gt;&amp;gt;&lt;/span&gt; $(document).ready(function(){ $("span.spBtn").click(function(){ var dstr=$("span#spDate").text(); dstr=dstr.replace(/\\/g,'.'); var d=Date.parseExact(dstr,"d.M.yyyy"); var i=$(this).attr("increment"); d=d.addDays(i); $("span#spDate").text(d.toString("d\\M\\yyyy")); }); }); </code></pre> http://stackoverflow.com/questions/1708468/subsonic-3-0-0-3-activerecord-between/1708719#1708719 3 Answer by TheVillageIdiot for subsonic 3.0.0.3 activeRecord Between TheVillageIdiot 2009-11-10T15:17:14Z 2009-11-10T15:17:14Z <p>try:</p> <pre><code>order.All().Where(x =&gt; x.order_date &gt;= Min_Date &amp;&amp; x.order_date &lt;= Max_Date); </code></pre> http://stackoverflow.com/questions/1706015/pls-modify-this-code-for-retrieving-the-image-from-sqldatabase/1706203#1706203 1 Answer by TheVillageIdiot for Pls modify this code for retrieving the image from sqldatabase TheVillageIdiot 2009-11-10T07:38:27Z 2009-11-10T07:38:27Z <p>you can server image like this:</p> <pre><code> ..... Image img= Image.FromStream(ms); Response.Clear(); Response.ContentType = "image/jpeg"; img.Save(Response.OutputStream, ImageFormat.Jpeg); } </code></pre> <p>but this will not put image in the <code>&lt;asp:Image ID="Image1" runat="server" /&gt;</code> because it needs image url not the image object :(</p> <p>what you can do is setup a separate page to serve image and pass it image id or other unique identifier associated with image to show it in the <code>&lt;asp:Image ID="Image1" runat="server" /&gt;</code>. simply add new page to your solution say <strong>ImageServer.aspx</strong> and in <code>page_load</code> write following:</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if(Request.QueryString.HasValues()) { var id=Request.QueryString["id"]; if(!string.IsEmptyOrNull(id)) { SqlConnection conn = new SqlConnection(str); //CHANGE SELECT TO GET ONLY IMAGE WITH PASSED ID string sql = "SELECT * FROM [REPORT_TABLE]"; SqlDataAdapter da = new SqlDataAdapter(sql, conn); DataSet ds = new DataSet(); da.Fill(ds); DataRow dr = ds.Tables[0].Rows[0]; Byte[] b = (Byte[])dr["IMAGEFIELD"]; MemoryStream ms = new MemoryStream(b); Response.Clear(); Response.ContentType = "image/jpeg"; var img=system.Drawing.Image.FromStream(ms); img.Save((Response.OutputStream, ImageFormat.Jpeg); Response.Flush(); return; } //HERE YOU MAY RETURN DEFAULT OR ERROR IMAGE } } </code></pre> <p>Now change you button click in upload page as follows:</p> <pre><code>protected void BtnSave_Click(object sender, EventArgs e) { .... //SAVE IMAGE TO DB AND GET IMAGE ID (TO IDENTIFY THIS IMAGE) image.ImageUrl = "YOUR_SERVER\ImageServer.aspx?id=" + IMAGE_ID; } </code></pre> http://stackoverflow.com/questions/1699271/validate-numeric-text-field-in-jquery/1699340#1699340 3 Answer by TheVillageIdiot for Validate numeric text field in jquery TheVillageIdiot 2009-11-09T06:10:16Z 2009-11-09T06:32:05Z <p>you can use callback which checks on leaving field if value is valid if value is not valid then clear it and show error message:</p> <pre><code>var decimal_char = ','; function isvalidnumber(){ var val=$(this).val(); //This regex is from the jquery.numeric plugin itself var re=new RegExp("^\\d+$|\\d*" + decimal_char + "\\d+"); if(!re.exec(val)){ alert("Invalid number"); $(this).val(""); } } $(document).ready(function(){ $("#txtN").numeric(decimal_char,isvalidnumber); }); </code></pre> http://stackoverflow.com/questions/933554/elmah-not-working-with-asp-net-site 3 Elmah not working with asp.net site TheVillageIdiot 2009-06-01T04:22:48Z 2009-11-05T07:20:38Z <p>I've tried to use elmah with my asp.net site but whenever I try to go to <a href="http://localhost:port/elmah.axd" rel="nofollow">http://localhost:port/elmah.axd</a> I get resource not found exception. My web.config is given below.</p> <pre><code> &lt;?xml version="1.0"?&gt; &lt;configuration&gt; &lt;configSections&gt; &lt;sectionGroup name="elmah"&gt; &lt;section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah"/&gt; &lt;section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" /&gt; &lt;section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" /&gt; &lt;section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah"/&gt; &lt;/sectionGroup&gt; &lt;/configSections&gt; &lt;elmah&gt; &lt;security allowRemoteAccess="0" /&gt; &lt;errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="elmah-sql" /&gt; &lt;errorMail from="my@account" to="myself" subject="ERROR From Elmah:" async="true" smtpPort="587" smtpServer="smtp.gmail.com" userName="my@account" password="mypassword" /&gt; &lt;/elmah&gt; &lt;connectionStrings&gt; &lt;add name="elmah-sql" connectionString="data source=(sqlserver); database=elmahdb; integrated security=false;User ID=user;Password=password"/&gt; &lt;/connectionStrings&gt; &lt;system.web&gt; &lt;compilation debug="true"&gt; &lt;assemblies&gt; &lt;add assembly="Elmah, Version=1.0.10617.0, Culture=neutral, PublicKeyToken=null"/&gt; &lt;/assemblies&gt; &lt;/compilation&gt; &lt;authentication mode="Windows"/&gt; &lt;httpHandlers&gt; &lt;remove verb="*" path="*.asmx"/&gt; &lt;add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/&gt; &lt;/httpHandlers&gt; &lt;httpModules&gt; &lt;add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;/httpModules&gt; &lt;/system.web&gt; &lt;system.webServer&gt; &lt;validation validateIntegratedModeConfiguration="false"/&gt; &lt;modules runAllManagedModulesForAllRequests="true"&gt; &lt;remove name="ScriptModule"/&gt; &lt;add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah"/&gt; &lt;add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah"/&gt; &lt;add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah"/&gt; &lt;/modules&gt; &lt;handlers&gt; &lt;remove name="WebServiceHandlerFactory-Integrated"/&gt; &lt;remove name="ScriptHandlerFactory"/&gt; &lt;remove name="ScriptHandlerFactoryAppServices"/&gt; &lt;remove name="ScriptResource"/&gt; &lt;add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add name="Elmah" verb="POST,GET,HEAD" path="elmah.axd" preCondition="integratedMode" type="Elmah.ErrorLogPageFactory, Elmah"/&gt; &lt;/handlers&gt; &lt;/system.webServer&gt; &lt;/configuration&gt; </code></pre> <p>EDIT: Elmah = (Error Logging Modules and Handlers)<br /> <a href="http://code.google.com/p/elmah/" rel="nofollow">http://code.google.com/p/elmah/</a></p> http://stackoverflow.com/questions/1817874/how-can-i-listen-for-monitors-being-added-or-removed Comment by TheVillageIdiot on How can I listen for monitors being added or removed? TheVillageIdiot 2009-11-30T10:22:33Z 2009-11-30T10:22:33Z This question will help you: <a href="http://stackoverflow.com/questions/181064/enumdisplaydevices-vs-wmi-win32desktopmonitor-how-to-detect-active-monitors" rel="nofollow" title="enumdisplaydevices vs wmi win32desktopmonitor how to detect active monitors">stackoverflow.com/questions/181064/&hellip;</a> http://stackoverflow.com/questions/1807172/problem-making-overlay-draggable Comment by TheVillageIdiot on Problem making overlay draggable TheVillageIdiot 2009-11-27T07:42:23Z 2009-11-27T07:42:23Z please check what is returned by ajax call in second time. I'm able to perfectly execute it in ff3.5 with firebug. http://stackoverflow.com/questions/1802433/javascript-validation-for-a-dynamic-gridview-have-checkbox/1802700#1802700 Comment by TheVillageIdiot on Javascript validation for a dynamic gridview have checkbox TheVillageIdiot 2009-11-26T15:34:48Z 2009-11-26T15:34:48Z Hi AVi, I've put new tested solution. If you have any problems please let me know. http://stackoverflow.com/questions/1794941/need-to-bind-data-to-input-type-checkbox Comment by TheVillageIdiot on Need to bind data to input type checkbox TheVillageIdiot 2009-11-25T06:13:07Z 2009-11-25T06:13:07Z Why don't you try it and then come back if it does not works? http://stackoverflow.com/questions/1794822/remove-last-character-in-id-attribute/1794835#1794835 Comment by TheVillageIdiot on remove last character in id attribute TheVillageIdiot 2009-11-25T05:47:13Z 2009-11-25T05:47:13Z It was just to show him a way to do it. http://stackoverflow.com/questions/1794810/not-sure-why-my-reader-wont-read-my-text-file/1794832#1794832 Comment by TheVillageIdiot on Not sure why my reader won't read my text file TheVillageIdiot 2009-11-25T05:31:17Z 2009-11-25T05:31:17Z Good Point, as he is ultimately putting it into <code>byte[]</code> this might be the case http://stackoverflow.com/questions/1794810/not-sure-why-my-reader-wont-read-my-text-file/1794837#1794837 Comment by TheVillageIdiot on Not sure why my reader won't read my text file TheVillageIdiot 2009-11-25T05:30:29Z 2009-11-25T05:30:29Z but he is checking <code>File.Exists(filename)</code> http://stackoverflow.com/questions/1787933/how-can-bind-the-html-page-to-a-div Comment by TheVillageIdiot on how can bind the html page to a div? TheVillageIdiot 2009-11-24T05:24:57Z 2009-11-24T05:24:57Z Please elaborate a little on how are you getting the page? http://stackoverflow.com/questions/1146433/visual-sourcesafe-download/1146462#1146462 Comment by TheVillageIdiot on Visual SourceSafe Download? TheVillageIdiot 2009-11-20T07:54:31Z 2009-11-20T07:54:31Z +1 for source(un)safe http://stackoverflow.com/questions/1768008/adding-form-elements-using-jquery/1768071#1768071 Comment by TheVillageIdiot on Adding form elements using JQuery TheVillageIdiot 2009-11-20T03:09:24Z 2009-11-20T03:09:24Z +1 Yest this is the right approach! http://stackoverflow.com/questions/1756293/split-the-output-rows-in-groups-in-sql-server Comment by TheVillageIdiot on Split the output rows in groups in SQL Server TheVillageIdiot 2009-11-18T14:29:42Z 2009-11-18T14:29:42Z where do you want to show or use the results? http://stackoverflow.com/questions/1753447/jquery-video-interferes-with-dropdown Comment by TheVillageIdiot on jQuery - Video interferes with dropdown? TheVillageIdiot 2009-11-18T03:57:51Z 2009-11-18T03:57:51Z I think you will need to use IFrame. http://stackoverflow.com/questions/1747058/how-to-change-the-width-of-the-dropdown-list-in-asp-net-dropdownlist-control Comment by TheVillageIdiot on how to change the width of the dropdown List in asp.net dropdownlist control TheVillageIdiot 2009-11-17T07:00:15Z 2009-11-17T07:00:15Z you mean it is a custom control which looks like dropdownlist? or normal dropdownlist? http://stackoverflow.com/questions/1746249/polynomial-evaluation-accuracy-multiplication-versus-division/1746401#1746401 Comment by TheVillageIdiot on polynomial evaluation accuracy, multiplication versus division TheVillageIdiot 2009-11-17T04:12:49Z 2009-11-17T04:12:49Z +1 for quote, really funny and insightful! http://stackoverflow.com/questions/1740783/open-popup-and-poulate-it-with-data-from-parent-window/1740940#1740940 Comment by TheVillageIdiot on Open popup and poulate it with data from parent window? TheVillageIdiot 2009-11-16T12:03:54Z 2009-11-16T12:03:54Z incidently I've tested it in Firefox 3.5.x with firebug!