User Kon M - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T06:39:19Zhttp://stackoverflow.com/feeds/user/22303http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1927990/can-i-trigger-a-webcontrol-panels-oninit-event-without-a-page/1929319#19293190Answer by Kon M for Can I trigger a webcontrol panel's OnInit event without a page?Kon M2009-12-18T16:33:47Z2009-12-18T16:33:47Z<p>Try <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.rendercontrol.aspx" rel="nofollow">RenderControl</a>.</p>
http://stackoverflow.com/questions/1877534/create-js-array-dynamically/1877559#18775591Answer by Kon M for create js array dynamically? Kon M2009-12-09T23:06:08Z2009-12-09T23:06:08Z<p>You can put them all into an array, like this...</p>
<pre><code>var arrContainer = [];
for (i=0;i<10;i++)
{
arrContainer.push(new Array());
}
</code></pre>
http://stackoverflow.com/questions/1349201/subsonic-3-0-0-3-not-generating-parameters-for-stored-procedures/1363939#13639393Answer by Kon M for Subsonic 3.0.0.3 not generating parameters for stored proceduresKon M2009-09-01T18:32:29Z2009-09-01T20:37:18Z<p>I had the same issue, and I had to tweak the <code>SQLServer.ttinclude</code> to get it working. Inside that file find the <code>GetSPParams()</code> method and change one line:</p>
<p>from </p>
<pre><code>string[] restrictions = new string[4] { DatabaseName, null, spName, null };
</code></pre>
<p>to</p>
<pre><code>string[] restrictions = new string[3] { null, null, spName };
</code></pre>
<p>.</p>
<p>BlackMael's answer has a helpful link that helped me figure out how to debug and step through the template code.</p>
<p>Now I'm not 100% sure yet that my change is a good one (there may be some adverse effects). I just haven't had a chance to test it thoroughly and need to read up some more on <code>Restrictions</code> as they pertain to the <code>GetSchema()</code> method. But for now, that solved my problem and I can successfully pass in my stored proc parameter.</p>
<p>Update: This may have something to do with the fact that my DB file is embedded in the VS solutin in App_Data. Perhaps this works better out of the box with a stand-alone SQL Server instance.</p>
http://stackoverflow.com/questions/1337009/stretching-li-and-contents0Stretching LI and contentsKon M2009-08-26T19:38:47Z2009-08-27T13:13:24Z
<p>Please consider <strong><a href="http://www.atasteofnewtown.com/" rel="nofollow">this site</a></strong>. </p>
<p>I'm having trouble stretching the submenu list items in IE7. Notice that when you hover over one of the LIs under Restaurants, the green doesn't fill the whole line. I've tried <code>{width: 100%}</code>, but that didn't help.</p>
<p>Any ideas why this is OK in Firefox but not IE? And how to fix it?</p>
<p>Thanks.</p>
<p><strong>UPDATE</strong>: I can get it to look right if I explicitly specify a width (like 51px), but I definitely don't want to do that in a layout that should be able to support dynamic content.</p>
http://stackoverflow.com/questions/1337009/stretching-li-and-contents/1341019#13410191Answer by Kon M for Stretching LI and contentsKon M2009-08-27T13:13:24Z2009-08-27T13:13:24Z<p>I figured out that my issue was dropMenuParent had a background color set. Once I removed that (because it was completely unnecessary), no more black showed up around the green (selected item color). Silly mistake.</p>
http://stackoverflow.com/questions/1299841/why-isnt-this-wrapping-as-expected0Why isn't this wrapping as expected?Kon M2009-08-19T13:13:17Z2009-08-19T13:29:52Z
<p>I'm sure this is something silly I'm missing. Can anyone take a look at <a href="http://atasteofnewtown.com/View2.aspx" rel="nofollow">this page</a> and tell me why BYOB section is showing up on the right and not right under the American section?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1206788/puzzling-javascript-array-behavior2Puzzling javascript array behaviorKon M2009-07-30T13:58:01Z2009-08-08T02:07:10Z
<p>So, this may be a really stupid question, but I'm obviously missing something here. </p>
<p>Consider the following code:</p>
<pre><code> var selectedItems = [];
selectedItems.push("0ce49e98-a8aa-46ad-bc25-3a49d475e9d3");
//fyi, selectedItems[selectedItems.length] = "0ce49e98-a8aa-46ad-bc25-3a49d475e9d3"; produced the same result.
</code></pre>
<p>At the end <code>selectedItems</code> content looks like this:</p>
<pre><code>Name Value Type
------------- -------------------------------------- ------
selectedItems {...} Object
- [0] "0ce49e98-a8aa-46ad-bc25-3a49d475e9d3" String
- length 1 Long
</code></pre>
<p>But if I just try to call split() on the same string, like this:</p>
<pre><code>selectedItems = "0ce49e98-a8aa-46ad-bc25-3a49d475e9d3".split(",")
</code></pre>
<p>Now the content of my supposed array looks like this (missing length):</p>
<pre><code>Name Value Type
------------- -------------------------------------- ------
selectedItems {...} Object
- [0] "0ce49e98-a8aa-46ad-bc25-3a49d475e9d3" String
</code></pre>
<p>Any idea what the difference is? What's actually happening here?<br />
Thanks in advance.</p>
<p><strong>UPDATED</strong>:
I have a feeling there's actually something structurally different about the two resulting values, because (atlas) ajax chokes on the one with the length property when I try to pass it to a server-side WebMethod (no actual error message, but I know the call fails). I'm not sure.</p>
<p><strong>UPDATE #2</strong>
I noticed that setting the targetLocationIdList this way, results in no 'length' property being displayed in Quick Watch window:</p>
<pre><code> var params =
{
jobId : args.get_JobId(),
targetLocationIdList : retVal.split(',')
};
</code></pre>
<p>But this results contain 'length' property displayed in Quick Watch window:</p>
<pre><code> var retValArr = [];
retValArr = retVal.split(',');
var params =
{
jobId : args.get_JobId(),
targetLocationIdList : retValArr
};
</code></pre>
http://stackoverflow.com/questions/1119976/simple-css-problem-title-text-on-upper-left-button-on-the-upper-right/1120002#11200021Answer by Kon M for Simple CSS problem: Title text on upper left, Button on the upper rightKon M2009-07-13T15:05:13Z2009-07-13T15:05:13Z<p>I believe 'the proper' way it to use DIVs (not SPANs) for element positioning. But yes, you'd have to set the width explicitly on the floated DIV on the left, otherwise it'll take up the whole line (being a block element and all). Just make sure that your width is enough to show all contents of the DIV without overflowing.</p>
http://stackoverflow.com/questions/835489/whats-wrong-with-this-linq-query1What's wrong with this linq query??Kon M2009-05-07T15:52:53Z2009-07-10T14:16:59Z
<p>I'm sure it's something really stupid, but I just don't see it.. </p>
<p><code>pData.LocationHours</code> is of type <code>BaseLocationHoursDataSet.LocationHoursDataTable</code>. Yet when I hover the cursor over <code>l</code>, all I see is "<code>(range variable) TSource l</code>" - why is that?? Why doesn't linq know what it's dealing with? I try the same thing with a different DataTable and everything works fine.... not this guy. What could be the problem?</p>
<pre><code>protected ListItem[] GetHoursTypesListItems(BaseLocationHoursDataSet pData)
{
return (
from l in pData.LocationHours // putting cursor over the l here shows: (range variable) TSource l
select new ListItem
{
Value = l, //ignore the fact that I didn't specify a property - that's the problem, that none of the properties of the object show up.
Text = l
}
).ToArray<ListItem>();
}
</code></pre>
<p>.</p>
<p><strong>UPDATE:</strong></p>
<p>The problem is that it doesn't know what l is. Instead of showing me the correct type (I expect to see LocationHoursRow), I see "TSource l".. What is that? Why doesn't it knwo what l is in the "<code>from l in pData.LocationHours</code>" line?</p>
http://stackoverflow.com/questions/233467/whats-the-best-way-to-open-new-browser-window9What's the best way to open new browser window?Kon M2008-10-24T13:08:46Z2009-07-10T04:35:36Z
<p>I know that most links should be left up to the end-user to decide how to open, but we can't deny that there are times you almost 'have to' force into a new window (for example to maintain data in a form on the current page).</p>
<p>What I'd like to know is what the consensus is on the 'best' way to open a link in a new browser window.</p>
<p>I know that <code><a href="url" target="_blank"></code> is out. I also know that <code><a href="#" onclick="window.open(url);"></code> isn't ideal for a variety of reasons. I've also tried to completely replace anchors with something like <code><span onclick="window.open(url);"></code> and then style the SPAN to look like a link.</p>
<p>One solution I'm leaning towards is <code><a href="url" rel="external"></code> and using JavaScript to set all targets to '_blank' on those anchors marked 'external'.</p>
<p>Are there any other ideas? What's better? I'm looking for the most XHTML-compliant and easiest way to do this.</p>
<p>UPDATE: I say target="_blank" is a no no, because I've read in <a href="http://www.sitepoint.com/article/standards-compliant-world/3/" rel="nofollow">several places</a> that the target attribute is going to be phased out of XHTML.</p>
http://stackoverflow.com/questions/1098354/multiple-grouping-inner-joning-in-linq/1098516#10985160Answer by Kon M for multiple grouping, inner joning in LinqKon M2009-07-08T14:38:48Z2009-07-08T14:38:48Z<p>First of all, it would be nice to know what exactly you can't figure out. If you're completely lost and don't know where to begin then you need to google around for linq joining and grouping.</p>
<p>Here's something I did recently that may (possibly) point you in the right direction:</p>
<pre><code>// This groups items by category and lists all category ids and names
from ct in Categories
join cst in Category_Subtypes
on ct.Category_Id equals cst.Category_Id
join st in Subtypes
on cst.Subtype_Id equals st.Subtype_Id
where
st.Type_Id == new Guid(id)
group ct by new { ct.Category_Id, ct.Display_Text } into ctg
select new
{
Id = ctg.Key.Category_Id,
Name = ctg.Key.Display_Text
}
</code></pre>
http://stackoverflow.com/questions/1038296/findcomponent-in-iframe2findComponent in iframeKon M2009-06-24T13:22:39Z2009-07-07T13:11:28Z
<p>I have a page with an iframe like this:</p>
<pre><code><iframe runat="server" id="rsPrintFrame" src="framedPage.aspx" height="0" width="0"></iframe>
</code></pre>
<p>I need to get access to a component on the 'framed' page from the parent page, as one would typically do with <code>$find()</code> or <code>Sys.Application.findComponent()</code>. But obviously I can't simply do: <code>myFrame.contentWindow.document.$find()</code>.</p>
<p>I've come up with a work-around involving making the <code>$find()</code> call in the framed page and saving it to a variable accessible to the parent page via javascript.</p>
<p>But is there a straightforward way to call <code>findComponent()</code> from the parent page while targeting a framed page's element/component.</p>
<p>BTW, <code>getElementById()</code> is not an acceptable solution.</p>
http://stackoverflow.com/questions/957564/trying-to-determine-a-specific-database-normalization-issue/957595#9575951Answer by Kon M for Trying to determine a specific database normalization issueKon M2009-06-05T19:10:54Z2009-06-05T19:10:54Z<p><a href="http://en.wikipedia.org/wiki/Database%5Fnormalization" rel="nofollow">http://en.wikipedia.org/wiki/Database_normalization</a></p>
http://stackoverflow.com/questions/952679/how-can-i-make-array-contains-case-insensitive-on-a-string-array/952704#9527041Answer by Kon M for How can I make Array.Contains case-insensitive on a string array?Kon M2009-06-04T19:44:29Z2009-06-04T19:49:15Z<p>Implement a custom <a href="http://msdn.microsoft.com/en-us/library/system.collections.iequalitycomparer.aspx" rel="nofollow">IEqualityComparer</a> that takes case-insensitivity into account.</p>
<p>Additionally, check <a href="http://stackoverflow.com/questions/188120/can-i-specify-my-explicit-type-comparator-inline">this</a> out. So then (in theory) all you'd have to do is:</p>
<pre><code>myArray.Contains("abc", ProjectionEqualityComparer<string>.Create(a => a.ToLower()))
</code></pre>
http://stackoverflow.com/questions/952131/very-simple-javascript-failing/952139#9521392Answer by Kon M for very simple javascript failing.Kon M2009-06-04T17:57:50Z2009-06-04T17:57:50Z<p>Debugging 101: Start checking all variable values.</p>
<pre><code>alert(parent);
alert(parent.document);
alert(parent.document.getElementById('posts'));
</code></pre>
<p>as well as the value rendered by: <code>'<?php $p; ?>'</code></p>
http://stackoverflow.com/questions/939678/how-to-retrieve-the-datetime-when-one-row-was-inserted-updated-in-sql-server-2005/939712#9397120Answer by Kon M for How to retrieve the datetime when one row was inserted/updated in Sql Server 2005?Kon M2009-06-02T13:55:37Z2009-06-02T13:55:37Z<p>There may be a slight chance that transaction logs are kept and you are log shipping. Check with your DBA.</p>
<p>Those logs could provide you with the date/time stamps you are looking for.</p>
http://stackoverflow.com/questions/854117/calling-https-wcf-service-from-silverlight/854129#8541290Answer by Kon M for calling https wcf service from silverlight...Kon M2009-05-12T18:24:30Z2009-05-12T18:24:30Z<p>Have you looked here?</p>
<p><a href="http://stackoverflow.com/questions/122144/calling-wcf-service-from-silverlight/123432">http://stackoverflow.com/questions/122144/calling-wcf-service-from-silverlight/123432</a></p>
http://stackoverflow.com/questions/839874/what-is-the-best-way-to-deserialize-array-of-json-objects-without-asp-net/839886#839886-1Answer by Kon M for what is the best way to deserialize array of json objects without asp.net? Kon M2009-05-08T13:55:01Z2009-05-08T13:55:01Z<p>With JavaScript you'd do:</p>
<pre><code>var myObj = eval('(' + jsonString + ')');
</code></pre>
http://stackoverflow.com/questions/836806/c-xmldocument-to-datatable/836861#8368610Answer by Kon M for C# XMLDocument to DataTable?Kon M2009-05-07T20:30:44Z2009-05-07T20:30:44Z<p>How about something like this?</p>
<pre><code>dsAPDP.ReadXml(new MemoryStream(ASCIIEncoding.ASCII.GetBytes(xmlAPDP.OuterXml)))
</code></pre>
http://stackoverflow.com/questions/805709/is-using-flags-very-often-in-code-advisable/808200#8082000Answer by Kon M for Is using flags very often in code advisable?Kon M2009-04-30T17:46:33Z2009-04-30T17:46:33Z<p>Yes, that is just silly nonsensical code.</p>
<p>You can simplify all that down to:</p>
<pre><code>if (condition1)
{
// do something
}
</code></pre>
http://stackoverflow.com/questions/807571/dynamic-data-grid/807660#8076601Answer by Kon M for Dynamic Data GridKon M2009-04-30T15:58:14Z2009-04-30T15:58:14Z<p>The distaste most web developers have is not for tables themselves, but their misuse - people often utilize tables for content/element positioning on a web page, which is a "no no." But no one said there's anything wrong with using tables for display of tabular data - that's what HTML tables were intended for.</p>
<p>So the answer depends on how the data coming from your DB is structured.</p>
<p>.</p>
<p>Use tables for something like this:</p>
<p>Orders:</p>
<pre><code>--------------------------------------------------------
| Order ID | Product Name | Order Date | Ordered By |
--------------------------------------------------------
| 1 | blah blah | 1/1/2009 | Jane Doe |
| 2 | blah blah | 1/1/2009 | Jane Doe |
| 3 | blah blah | 1/1/2009 | Jane Doe |
</code></pre>
<p>.</p>
<p>Don't use a table for something like this:</p>
<pre><code>"Hello, Jane Doe.
Your order (#2), which was received on 1/1/2009, is being processed. Sorry for the delay.
- Your friends at ABC Store"
</code></pre>
http://stackoverflow.com/questions/807502/whats-the-most-stupid-thing-you-have-ever-done-in-software-programming/807510#8075105Answer by Kon M for What's the most stupid thing you have ever done in software programming?! Kon M2009-04-30T15:27:38Z2009-04-30T15:27:38Z<p>Making database changes without doing a back-up prior to that.</p>
http://stackoverflow.com/questions/806944/escape-quote-in-c-for-javascript-consumption/806962#8069624Answer by Kon M for Escape Quote in C# for javascript consumptionKon M2009-04-30T13:40:03Z2009-04-30T13:40:03Z<p>I don't you just do this:</p>
<pre><code>string correctResponseText = wrongResponseText.Replace("\"", "\\\"");
</code></pre>
http://stackoverflow.com/questions/798340/testing-if-javascript-function-exists/798352#7983520Answer by Kon M for testing if javascript function existsKon M2009-04-28T14:47:16Z2009-04-28T14:47:16Z<p>A simple check like this will let you know if it exists/defined:</p>
<pre><code>if (this.onsubmit)
{
// do stuff;
}
</code></pre>
http://stackoverflow.com/questions/785799/how-can-i-export-a-gridview-datasource-to-a-datatable-or-dataset/785824#7858240Answer by Kon M for How can I export a GridView.DataSource to a datatable or dataset?Kon M2009-04-24T13:21:04Z2009-04-24T13:21:04Z<p>Assuming your DataSource is of type DataTable, you can just do this:</p>
<pre><code>myGridView.DataSource as DataTable
</code></pre>
http://stackoverflow.com/questions/770886/linq-criteria-query/770894#7708942Answer by Kon M for Linq criteria queryKon M2009-04-21T03:06:17Z2009-04-21T03:06:17Z<p>here's a start...</p>
<pre><code>from mt in MyTable
where myIntegerList.Contains(mt.id)
</code></pre>
http://stackoverflow.com/questions/744051/sqldatareader-dispose/744061#7440614Answer by Kon M for SQLDataReader dispose?Kon M2009-04-13T14:29:13Z2009-04-13T14:29:13Z<p>To be safe, wrap every SqlDataReader object in a <a href="http://msdn.microsoft.com/en-us/library/yh598w02.aspx" rel="nofollow">using statement</a>.</p>
http://stackoverflow.com/questions/722462/using-the-sql-command-object-how-can-you-check-to-see-if-the-result-set-is-empty/722489#7224897Answer by Kon M for Using the SQL Command object, how can you check to see if the result set is empty?Kon M2009-04-06T17:47:01Z2009-04-06T17:55:27Z<p>Check out the definition of <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.executescalar.aspx" rel="nofollow">ExecuteScalar</a>. It returns an Object, which will have a null reference if the result set is empty.</p>
<p>The reason you are seeing zero is that <a href="http://msdn.microsoft.com/en-us/library/23511zys.aspx" rel="nofollow"><code>Convert.ToInt32</code></a> returns a zero when given <code>null</code>. You need to check the return value from <code>ExecuteScalar</code> before you convert it to an <code>int</code>.</p>
http://stackoverflow.com/questions/564756/should-i-just-give-up-on-programming/571769#5717690Answer by Kon M for Should I just give up on programming?Kon M2009-02-21T00:27:38Z2009-02-21T00:27:38Z<p>You're only a year in? That's nothing. If you're truly interested, then don't give up yet... it's just too early. But if you feel that you haven't improved since day one, then maybe it's better to cut your losses now and move on to something else.</p>
http://stackoverflow.com/questions/569897/why-are-estimates-always-taken-for-granted/569934#5699342Answer by Kon M for Why are estimates always taken for granted?Kon M2009-02-20T15:19:41Z2009-02-20T15:19:41Z<p>The estimation you provide is considered a deadline. In most cases, instead of forcing a deadline on you, a good manager will ask you when you can deliver and hold you to it. You need to remember that most successful businesses focus on deliverables and timeframes, not "hope" (as in "I hope to be done soon").</p>
http://stackoverflow.com/questions/1877534/create-js-array-dynamically/1877554#1877554Comment by Kon M on create js array dynamically? Kon M2009-12-09T23:11:40Z2009-12-09T23:11:40ZYes, and explain how you can write any program with zero globals.http://stackoverflow.com/questions/1877534/create-js-array-dynamically/1877550#1877550Comment by Kon M on create js array dynamically? Kon M2009-12-09T23:06:34Z2009-12-09T23:06:34Zbeat me to it. :)http://stackoverflow.com/questions/96382/how-to-tell-what-files-ie-thinks-are-nonsecure/96413#96413Comment by Kon M on How To Tell What Files IE Thinks Are "nonsecure"?Kon M2009-12-02T15:47:26Z2009-12-02T15:47:26ZThanks for the setting tip. I was wondering why I wasn't seeing any image requests.http://stackoverflow.com/questions/233596/best-practice-for-forcing-garbage-collection-in-c/233613#233613Comment by Kon M on Best Practice for Forcing Garbage Collection in C#Kon M2009-10-17T16:28:03Z2009-10-17T16:28:03ZNothing, it only compiles and optimizes code. And this definitely has nothing to do with the CLR... or .NET even.http://stackoverflow.com/questions/1349201/subsonic-3-0-0-3-not-generating-parameters-for-stored-proceduresComment by Kon M on Subsonic 3.0.0.3 not generating parameters for stored proceduresKon M2009-08-28T20:57:34Z2009-08-28T20:57:34ZI have the same problem. I can definitely see the code the .tt file that should be looping through the parameters of my stored proc, but the final generated .cs has no code that adds that parameters. Definitely need to resolve this.http://stackoverflow.com/questions/1337009/stretching-li-and-contents/1337034#1337034Comment by Kon M on Stretching LI and contentsKon M2009-08-27T13:10:45Z2009-08-27T13:10:45ZYes, padding, but not margins. The background color still spans across the padding. That wasn't quite it, but I did figure it out. Thanks.http://stackoverflow.com/questions/1337009/stretching-li-and-contents/1337106#1337106Comment by Kon M on Stretching LI and contentsKon M2009-08-26T20:07:16Z2009-08-26T20:07:16ZI tried that, but it didn't help. However, I noticed in IE Developer Toolbar that hasLayout is still set to -1.http://stackoverflow.com/questions/1337009/stretching-li-and-contents/1337034#1337034Comment by Kon M on Stretching LI and contentsKon M2009-08-26T19:51:21Z2009-08-26T19:51:21ZIf you actually looked at the code, you'd see that it already is in display block style and left/right padding and margins are already at zero. Doesn't seem to help.http://stackoverflow.com/questions/1299841/why-isnt-this-wrapping-as-expected/1299861#1299861Comment by Kon M on Why isn't this wrapping as expected?Kon M2009-08-19T19:13:22Z2009-08-19T19:13:22ZThough this didn't work in IE, I still feel that this is the ideal solution. So I up-voted. Thank, David.http://stackoverflow.com/questions/1299841/why-isnt-this-wrapping-as-expected/1299856#1299856Comment by Kon M on Why isn't this wrapping as expected?Kon M2009-08-19T19:12:44Z2009-08-19T19:12:44ZWell, as much as I didn't want to do this, it seemed to be the only solution (short of using tables) that worked in FF and IE. Thanks, Pat.http://stackoverflow.com/questions/1299841/why-isnt-this-wrapping-as-expected/1299861#1299861Comment by Kon M on Why isn't this wrapping as expected?Kon M2009-08-19T14:05:51Z2009-08-19T14:05:51ZSpoke too soon... this is great in FF. But in IE7, Casual section now hugs the right side, instead of following immediately after BYOB in the middle.http://stackoverflow.com/questions/1299841/why-isnt-this-wrapping-as-expected/1299861#1299861Comment by Kon M on Why isn't this wrapping as expected?Kon M2009-08-19T13:26:41Z2009-08-19T13:26:41ZHmm... that seems to be it! I'm just not quite sure why there is room for BYOB beside Bar? I guess this is related to variable heights? Because if I set height to 200px across all the groups, the problem goes away. I'll take it, but I won't be happy about it! :)http://stackoverflow.com/questions/1299841/why-isnt-this-wrapping-as-expected/1299879#1299879Comment by Kon M on Why isn't this wrapping as expected?Kon M2009-08-19T13:23:15Z2009-08-19T13:23:15ZNot a bad idea, however I'd prefer to stick to CSS vs additional JS solutions.http://stackoverflow.com/questions/1299841/why-isnt-this-wrapping-as-expected/1299856#1299856Comment by Kon M on Why isn't this wrapping as expected?Kon M2009-08-19T13:17:37Z2009-08-19T13:17:37ZBut the parent of tagPlaces has clearfix applied to it. Shouldn't that do it, since I'm floating tagPlaces?http://stackoverflow.com/questions/357147/go-daddy-sql-server-2005-remote-connection/659429#659429Comment by Kon M on Go Daddy SQL Server 2005 Remote ConnectionKon M2009-08-15T14:30:47Z2009-08-15T14:30:47ZIIS -> web server. not sure what database-related issues have to do with IIS (other than authentication/impersonation perhaps).