User TheVillageIdiot - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T16:14:09Zhttp://stackoverflow.com/feeds/user/13198http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/583001/improving-performance-of-cluster-index-guid-primary-key2Improving performance of cluster index GUID primary keyTheVillageIdiot2009-02-24T18:39:25Z2009-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#18189510Answer by TheVillageIdiot for jQuery external links classTheVillageIdiot2009-11-30T10:15:41Z2009-11-30T10:15:41Z<p>Please make sure links start with http:// I've tested it with following links:</p>
<pre><code><ul style="list-style:none none outside;">
<li><a href="http://www.google.com">Google</a></li>
<li><a href="http://localhost/EnterKey.html">Enter Key</a></li>
<li><a href="www.microsoft.com">Microsoft</a></li>
<li><a href="http://stackoverflow.com/questions/">SO</a></li>
</ul>
<script type="text/javascript">
$(function(){
$("a").filter(function(){
return this.hostname && this.hostname !== location.hostname;
}).after("<img src='/images/extlink.gif'/>");
});
</script>
</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#18027000Answer by TheVillageIdiot for Javascript validation for a dynamic gridview have checkboxTheVillageIdiot2009-11-26T09:55:44Z2009-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><asp:GridView ID="gvTest" runat="server" AutoGenerateColumns="false">
<Columns>
<asp:TemplateField HeaderText="Checkbox 1">
<ItemTemplate>
<asp:CheckBox ID="chkFrist" CssClass="chk1" runat="server"
Text='<%# Eval("Chk1") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Checkbox 2">
<ItemTemplate>
<asp:CheckBox ID="chkSecond" CssClass="chk2" runat="server"
Text='<%# Eval("Chk2") %>' />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</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><script src="jquery-1.3.2.js" type="text/javascript"></script>
<script src="jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script type="text/javascript">
$(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);
}
}
</script>
</code></pre>
http://stackoverflow.com/questions/1801905/how-to-fetch-data-from-nested-dictionary-in-c/1801921#18019210Answer by TheVillageIdiot for how to fetch data from nested Dictionary in c#TheVillageIdiot2009-11-26T06:41:02Z2009-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+"=>>");
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#17949571Answer by TheVillageIdiot for Extract section from json in jqueryTheVillageIdiot2009-11-25T06:01:50Z2009-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#17949223Answer by TheVillageIdiot for export to excel file from asp.netTheVillageIdiot2009-11-25T05:49:53Z2009-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#17948351Answer by TheVillageIdiot for remove last character in id attributeTheVillageIdiot2009-11-25T05:26:28Z2009-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#17942640Answer by TheVillageIdiot for Disable Return key outside textareas on a Asp.Net web page (containing ajax code)TheVillageIdiot2009-11-25T02:20:26Z2009-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><html>
<head>
<title>Enter Key</title>
<script src="jquery-1.2.6.js"></script>
</head>
<body>
<div id="prompt" style="color:#eeffee;width:50px;height:50px;"></div>
<textarea id="txt" cols="25" rows="10"></textarea>
<script type="text/javascript">
$(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 && 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;
}
}
});
});
</script>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1789181/jquery-replace-part-of-a-url/1789208#17892081Answer by TheVillageIdiot for jquery replace part of a urlTheVillageIdiot2009-11-24T10:30:42Z2009-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#17808201Answer by TheVillageIdiot for Save database calls - display one row at a timeTheVillageIdiot2009-11-23T02:27:52Z2009-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#17680790Answer by TheVillageIdiot for Adding form elements using JQueryTheVillageIdiot2009-11-20T03:08:01Z2009-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#17465232Answer by TheVillageIdiot for jQuery popout div next to element of my choiceTheVillageIdiot2009-11-17T04:10:28Z2009-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><div id="divPop" style="z-index:500;position:absolute;display:none;">
Hello World! This is Popup Div.
</div>
<input id="txt" type="text" value="" width="200px" height="50px"
style="border:2px solid #ffeeee;color:#eeeeff;background-color:#aaeeaa;"/>
<script type="text/javascript">
$(document).ready(function(){
$("#txt").popupDiv("#divPop");
});
</script>
</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#17410281Answer by TheVillageIdiot for decimal places in JSTheVillageIdiot2009-11-16T09:24:00Z2009-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<0){
return a + ".00";
}
var j = a.substring(i);
console.log(j);
if(j.length<3){
for(var k=j.length;k<3;k++)
a+='0';
return a;
}
if(j.length>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#17409402Answer by TheVillageIdiot for Open popup and poulate it with data from parent window?TheVillageIdiot2009-11-16T09:04:46Z2009-11-16T09:04:46Z<p>Parent Window:</p>
<pre><code><span id="popup"> Click to Open Popup </span>
<script type="text/javascript">
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");
});
});
</script>
</code></pre>
<p>Popup Window:</p>
<pre><code><ul id="list"></ul>
<script type="text/javascript">
if(window.opener && !window.opener.closed){
var ar= window.opener.getArray();
var items="";
for(var i=0;i<ar.length;i++){
items +="<li>" + ar[i] + "</li>";
}
$("ul#list").html(items);
}
</script>
</code></pre>
http://stackoverflow.com/questions/1727912/how-to-correct-a-jquery-syntax-error/1727933#17279330Answer by TheVillageIdiot for How to correct a jQuery syntax error?TheVillageIdiot2009-11-13T08:38:50Z2009-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#17278800Answer by TheVillageIdiot for how to detect when a shortcut key is pressed in javascriptTheVillageIdiot2009-11-13T08:24:32Z2009-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#17213841Answer by TheVillageIdiot for Changing activeindex numeric to text TheVillageIdiot2009-11-12T10:44:29Z2009-11-12T10:44:29Z<p>write simple mapping function which returns corresponding alphabet.</p>
http://stackoverflow.com/questions/910863/using-transactions-with-subsonic3Using transactions with subsonicTheVillageIdiot2009-05-26T14:03:44Z2009-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#17211941Answer by TheVillageIdiot for Object being passed to Function, but not being received... why?TheVillageIdiot2009-11-12T10:02:49Z2009-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#17207280Answer by TheVillageIdiot for How do I serialize a child class?TheVillageIdiot2009-11-12T08:24:45Z2009-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#17197221Answer by TheVillageIdiot for How to capture mousemove events beneath child controls.TheVillageIdiot2009-11-12T03:36:36Z2009-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>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#17196293Answer by TheVillageIdiot for Generic method syntax clarificationTheVillageIdiot2009-11-12T03:06:53Z2009-11-12T03:06:53Z<p>1) No, <code>Static void Sample<T>(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#17147390Answer by TheVillageIdiot for Getting latitude and longitude without a GPS (Windows Mobile)TheVillageIdiot2009-11-11T11:56:51Z2009-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#17134982Answer by TheVillageIdiot for scaffold in subsonicTheVillageIdiot2009-11-11T06:53:53Z2009-11-11T06:53:53Z<p>Setup all the Subsonic stuff (like the configuration etc.). In you page register controls:</p>
<pre><code><%@ Register Assembly="SubSonic" Namespace="SubSonic" TagPrefix="subsonic" %>
</code></pre>
<p>Here is simplest way to use scaffold:</p>
<pre><code><subsonic:Scaffold ID="Scaffold1" runat="server" TableName="Table_Name">
</subsonic:Scaffold>
</code></pre>
http://stackoverflow.com/questions/1712670/what-is-the-difference-between-window-presentation-foundation-and-wcf-which-is-n/1712690#17126902Answer by TheVillageIdiot for What is the difference between Window Presentation Foundation and WCF? Which is newer?TheVillageIdiot2009-11-11T02:47:33Z2009-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#17093222Answer by TheVillageIdiot for date increase in asp.netTheVillageIdiot2009-11-10T16:38:25Z2009-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><span class="spBtn" increment="-1">&lt;</span>
<span id="spDate">11\11\2009</span>
<span class="spBtn" increment="1">&gt;</span>
$(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#17087193Answer by TheVillageIdiot for subsonic 3.0.0.3 activeRecord BetweenTheVillageIdiot2009-11-10T15:17:14Z2009-11-10T15:17:14Z<p>try:</p>
<pre><code>order.All().Where(x => x.order_date >= Min_Date && x.order_date <= Max_Date);
</code></pre>
http://stackoverflow.com/questions/1706015/pls-modify-this-code-for-retrieving-the-image-from-sqldatabase/1706203#17062031Answer by TheVillageIdiot for Pls modify this code for retrieving the image from sqldatabaseTheVillageIdiot2009-11-10T07:38:27Z2009-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><asp:Image ID="Image1" runat="server" /></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><asp:Image ID="Image1" runat="server" /></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#16993403Answer by TheVillageIdiot for Validate numeric text field in jqueryTheVillageIdiot2009-11-09T06:10:16Z2009-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-site3Elmah not working with asp.net siteTheVillageIdiot2009-06-01T04:22:48Z2009-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> <?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="elmah">
<section name="security" requirePermission="false"
type="Elmah.SecuritySectionHandler, Elmah"/>
<section name="errorLog" requirePermission="false"
type="Elmah.ErrorLogSectionHandler, Elmah" />
<section name="errorMail" requirePermission="false"
type="Elmah.ErrorMailSectionHandler, Elmah" />
<section name="errorFilter" requirePermission="false"
type="Elmah.ErrorFilterSectionHandler, Elmah"/>
</sectionGroup>
</configSections>
<elmah>
<security allowRemoteAccess="0" />
<errorLog type="Elmah.SqlErrorLog, Elmah"
connectionStringName="elmah-sql" />
<errorMail
from="my@account"
to="myself"
subject="ERROR From Elmah:"
async="true"
smtpPort="587"
smtpServer="smtp.gmail.com"
userName="my@account"
password="mypassword" />
</elmah>
<connectionStrings>
<add name="elmah-sql" connectionString="data source=(sqlserver);
database=elmahdb;
integrated security=false;User ID=user;Password=password"/>
</connectionStrings>
<system.web>
<compilation debug="true">
<assemblies>
<add assembly="Elmah, Version=1.0.10617.0, Culture=neutral,
PublicKeyToken=null"/>
</assemblies>
</compilation>
<authentication mode="Windows"/>
<httpHandlers>
<remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false"
type="System.Web.Script.Services.ScriptHandlerFactory,
System.Web.Extensions, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35"/>
<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"/>
<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"/>
</httpHandlers>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule,
System.Web.Extensions, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35"/>
</httpModules>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<modules runAllManagedModulesForAllRequests="true">
<remove name="ScriptModule"/>
<add name="ScriptModule" preCondition="managedHandler"
type="System.Web.Handlers.ScriptModule,
System.Web.Extensions, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35"/>
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah"/>
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah"/>
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah"/>
</modules>
<handlers>
<remove name="WebServiceHandlerFactory-Integrated"/>
<remove name="ScriptHandlerFactory"/>
<remove name="ScriptHandlerFactoryAppServices"/>
<remove name="ScriptResource"/>
<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"/>
<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"/>
<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"/>
<add name="Elmah" verb="POST,GET,HEAD" path="elmah.axd"
preCondition="integratedMode"
type="Elmah.ErrorLogPageFactory, Elmah"/>
</handlers>
</system.webServer>
</configuration>
</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-removedComment by TheVillageIdiot on How can I listen for monitors being added or removed?TheVillageIdiot2009-11-30T10:22:33Z2009-11-30T10:22:33ZThis 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/…</a>http://stackoverflow.com/questions/1807172/problem-making-overlay-draggableComment by TheVillageIdiot on Problem making overlay draggableTheVillageIdiot2009-11-27T07:42:23Z2009-11-27T07:42:23Zplease 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#1802700Comment by TheVillageIdiot on Javascript validation for a dynamic gridview have checkboxTheVillageIdiot2009-11-26T15:34:48Z2009-11-26T15:34:48ZHi 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-checkboxComment by TheVillageIdiot on Need to bind data to input type checkboxTheVillageIdiot2009-11-25T06:13:07Z2009-11-25T06:13:07ZWhy 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#1794835Comment by TheVillageIdiot on remove last character in id attributeTheVillageIdiot2009-11-25T05:47:13Z2009-11-25T05:47:13ZIt 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#1794832Comment by TheVillageIdiot on Not sure why my reader won't read my text file TheVillageIdiot2009-11-25T05:31:17Z2009-11-25T05:31:17ZGood Point, as he is ultimately putting it into <code>byte[]</code> this might be the casehttp://stackoverflow.com/questions/1794810/not-sure-why-my-reader-wont-read-my-text-file/1794837#1794837Comment by TheVillageIdiot on Not sure why my reader won't read my text file TheVillageIdiot2009-11-25T05:30:29Z2009-11-25T05:30:29Zbut he is checking <code>File.Exists(filename)</code>http://stackoverflow.com/questions/1787933/how-can-bind-the-html-page-to-a-divComment by TheVillageIdiot on how can bind the html page to a div?TheVillageIdiot2009-11-24T05:24:57Z2009-11-24T05:24:57ZPlease elaborate a little on how are you getting the page?http://stackoverflow.com/questions/1146433/visual-sourcesafe-download/1146462#1146462Comment by TheVillageIdiot on Visual SourceSafe Download?TheVillageIdiot2009-11-20T07:54:31Z2009-11-20T07:54:31Z+1 for source(un)safehttp://stackoverflow.com/questions/1768008/adding-form-elements-using-jquery/1768071#1768071Comment by TheVillageIdiot on Adding form elements using JQueryTheVillageIdiot2009-11-20T03:09:24Z2009-11-20T03:09:24Z+1 Yest this is the right approach!http://stackoverflow.com/questions/1756293/split-the-output-rows-in-groups-in-sql-serverComment by TheVillageIdiot on Split the output rows in groups in SQL Server TheVillageIdiot2009-11-18T14:29:42Z2009-11-18T14:29:42Zwhere do you want to show or use the results? http://stackoverflow.com/questions/1753447/jquery-video-interferes-with-dropdownComment by TheVillageIdiot on jQuery - Video interferes with dropdown?TheVillageIdiot2009-11-18T03:57:51Z2009-11-18T03:57:51ZI 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-controlComment by TheVillageIdiot on how to change the width of the dropdown List in asp.net dropdownlist controlTheVillageIdiot2009-11-17T07:00:15Z2009-11-17T07:00:15Zyou 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#1746401Comment by TheVillageIdiot on polynomial evaluation accuracy, multiplication versus divisionTheVillageIdiot2009-11-17T04:12:49Z2009-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#1740940Comment by TheVillageIdiot on Open popup and poulate it with data from parent window?TheVillageIdiot2009-11-16T12:03:54Z2009-11-16T12:03:54Zincidently I've tested it in Firefox 3.5.x with firebug!