User Chris - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T13:48:41Zhttp://stackoverflow.com/feeds/user/11574http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1214607/how-can-i-get-the-root-domain-uri-in-asp-net5How can I get the root domain URI in ASP.NET?Chris2009-07-31T20:09:43Z2009-11-19T21:24:27Z
<p>Let's say I'm hosting a website at <a href="http://www.foobar.com" rel="nofollow">http://www.foobar.com</a>. </p>
<p>Is there a way I can programmatically ascertain "http://www.foobar.com/" in my code behind (i.e. without having to hardcode it in my web config)?</p>
http://stackoverflow.com/questions/1191252/asp-net-sql-server-hosting1ASP.NET/SQL Server hosting Chris2009-07-27T23:51:20Z2009-11-16T14:40:59Z
<p>I'm looking for an ASP.NET and SQL Server host for a site I'm developing. Here's the important caveat though: I have a backup of a SQL database (.bak file) and need to be able to restore this database on the host.</p>
<p>Can someone refer me to a host where I have enough control over SQL Server that I can restore a database .bak file?</p>
http://stackoverflow.com/questions/660972/what-is-your-best-pseudo-code-phrase41What is your best pseudo-code phrase?Chris2009-03-19T03:33:18Z2009-11-15T14:54:44Z
<p>Do you have any clever pseudo-code phrases? Maybe a common phrase that has analogous pseudo-code? What's your best one? </p>
<p>For example, one I've seen, from <a href="http://www.bash.org/?845468" rel="nofollow">bash.org</a>:</p>
<blockquote>
<pre>A programmer started to cuss
Because getting to sleep was a fuss
As he lay there in bed
Looping 'round in his head
was: while(!asleep()) sheep++</pre>
</blockquote>
<p>One I thought of/use:</p>
<ul>
<li>"Skills to pay the bills": <code>foreach(bill) paywith(skill)</code></li>
</ul>
<p>Have any to share?</p>
<p>What would you call these if you gave them a name?</p>
http://stackoverflow.com/questions/660972/what-is-your-best-pseudo-code-phrase/664402#6644023Answer by Chris for What is your best pseudo-code phrase?Chris2009-03-19T23:06:03Z2009-11-15T12:56:32Z<p><PRE>reaction = screwed? flight() : fight();</PRE></p>
<p>Or:</p>
<pre><code>function respond(situation) {
if (situation == screwed)
flight();
else
fight();
}
</code></pre>
http://stackoverflow.com/questions/743094/appdata-aspnetdb-mdf-to-sql-server-2005-or-083App_Data/ASPNETDB.MDF to Sql Server 2005 (or 08)Chris2009-04-13T05:11:49Z2009-10-27T22:09:54Z
<p>I've been developing an ASP.NET WebForms app that needed account login functionality (e.g. register new users, change passwords, recover passwords, profiles, roles, etc). To do this, I used FormsAuthentication with the default data store, which, to my surprise, is an MDF file in App_Data. When it comes time to actually deploy this app. live on the web, I'm going to use some shared hosting like GoDaddy or another cheap company.</p>
<p>For efficiency, I'd like to switch over from this MDF to actual SQL Server 2005 or 2008 (who in their right mind uses flat files?). With shared hosting, however, I'm not going to be able to run any programs like aspnet_regsql.exe. I'll just have a single login and password to a SQL Server database, and an FTP account into the domain root. No MSTSC remote desktop, no console access, no tinkering in IIS, etc.</p>
<p>I won't need to transfer any user accounts from ASPNETDB.MDF (site will be starting with zero users), but how am I suppose to:</p>
<p>1) Easily create the tables, procedures, etc. that Visual Studio automatically created in ASPNETDB.MDF when I used Web Site Administration Tool to get started with FormsAuthentication?</p>
<p>2) Have the SQL membership provider use a connection string I give it instead of using whatever it is now to connect to this ASPNETDB.MDF. Hell, I don't even see any connection string to this MDF in the web.config; how the hell is my app. even finding it? Machine.config? That would be a poor decision if that's the case. This behind-the-scenes crap drives me nuts.</p>
<p><strong>Any help from someone who has been through this migration would be very, very much appreciated!</strong></p>
http://stackoverflow.com/questions/477305/browserless-javascript3Browserless JavaScriptChris2009-01-25T07:14:18Z2009-10-27T07:07:05Z
<p>I talked to the Team Lead at Snap-On Tools once, and she told they used an "implementation of JavaScript" for their server-side coding. It's been a while, but I was thinking, WTF is she talking about? Are there interpreters for JavaScript besides those implemented in browsers? </p>
<p><strong>How can you create a program or code, especially server-side, using JavaScript that doesn't execute in the context of a browser? What the hell is server-side about JavaScript if it's not generating content after the browser has loaded it? Can "server-side" JavaScript generate content before the HTTP response is deliver—and if so, how does that work/is set up?</strong></p>
<p>I have many issues with JavaScript, but first-class functions are so sexy. And JavaScript Object Notation is so pure; I couldn't imagine an easier way to define data structures. Plus, you can hack out some code pretty quickly with dynamic typing if you're not writing something that's mission critical.</p>
<p>As a side question, given the last paragraph, have any suggestions about a good language to learn (comments will suffice)?</p>
http://stackoverflow.com/questions/1475520/unit-testing-code-coverage-do-you-have-100-coverage8Unit testing code coverage - do you have 100% coverage?Chris2009-09-25T05:01:09Z2009-10-20T19:14:01Z
<p>Do your unit tests constitute 100% code coverage? Yes or no, and why or why not.</p>
http://stackoverflow.com/questions/1585517/scheduled-net-code-execution-in-hosted-environment2Scheduled .NET code execution in hosted environment?Chris2009-10-18T17:37:29Z2009-10-19T20:59:49Z
<p>I've got about 40 lines of .NET code in a console application that read and RSS feed and store information in a database. I need this code to execute every night for as long as the RSS feed exists (indefinitely). Currently, I just launch the console app. from my home computer. </p>
<p>Because I can't trust myself to remember to do this every night, I somehow need to have this code hosted. I'd like to somehow have this app. or code (it could easily be put in an ASP.NET page codebehind and triggered to execute when the page loads) run automatically without me having to run the console app. manually.</p>
<p>Any ideas?</p>
<p>EDIT: I don't want to run this code from my computer; I can't guarantee my computer will not be hibernating or connected to the Internet every night.</p>
<p>EDIT: Right now I'm thinking spawn a background thread using BackgroundWorker in Application_Start of the global.asax, have it download the RSS feed once a day, and Thread.Sleep() the rest of the time.</p>
http://stackoverflow.com/questions/171640/making-locking-easier-in-mtas1Making locking easier in MTAsChris2008-10-05T07:44:18Z2009-10-19T13:16:29Z
<p>In multi-threaded code, when an instance may be read or written by multiple threads, they need to be locked on to perform these operations safely.</p>
<p>To avoid the repetition of creating an object to lock on and writing a bunch of lock statements through code, I've created a generic class to handle the locking. </p>
<p>Am I missing anything, conceptually? This should work, right?</p>
<pre><code>public class Locked<T> where T : new()
{
private readonly object locker = new object();
private T value;
public Locked()
: this(default(T))
{ }
public Locked(T value)
{
this.value = value;
}
public T Get()
{
lock (this.locker)
{
return this.value;
}
}
public void Set(T value)
{
lock (this.locker)
{
this.value = value;
}
}
}
</code></pre>
<p>And an example of it being used in a class:</p>
<pre><code>private Locked<bool> stopWorkerThread = new Locked<bool>();
public void WorkerThreadEntryPoint()
{
while (true)
{
if (this.stopWorkerThread.Get())
{
break;
}
</code></pre>
<p>Also, how would I test something like this, in an automated way (e.g. create a unit test)?</p>
<p>Lastly, what can I do to implement a ++ and -- operator, to avoid this:</p>
<pre><code> this.runningThreads.Set(this.runningThreads.Get() + 1);
</code></pre>
http://stackoverflow.com/questions/155209/another-locking-question1Another locking questionChris2008-09-30T21:38:13Z2009-10-19T13:16:02Z
<p>I'm trying to get my multithreading understanding locked down. I'm doing my best to teach myself, but some of these issues need clarification. </p>
<p>I've gone through three iterations with a piece of code, experimenting with locking.</p>
<p>In this code, the only thing that needs locking is this.managerThreadPriority.</p>
<p>First, the simple, procedural approach, with minimalistic locking.</p>
<pre><code>var managerThread = new Thread
(
new ThreadStart(this.ManagerThreadEntryPoint)
);
lock (this.locker)
{
managerThread.Priority = this.managerThreadPriority;
}
managerThread.Name = string.Format("Manager Thread ({0})", managerThread.GetHashCode());
managerThread.Start();
</code></pre>
<p>Next, a single statement to create and launch a new thread, but the lock appears to be scoped too large, to include the creation and launching of the thread. The compiler doesn't somehow magically know that the lock can be released after this.managerThreadPriority is used.</p>
<p>This kind of naive locking should be avoided, I would assume.</p>
<pre><code>lock (this.locker)
{
new Thread
(
new ThreadStart(this.ManagerThreadEntryPoint)
)
{
Priority = this.managerThreadPriority,
Name = string.Format("Manager Thread ({0})", GetHashCode())
}
.Start();
}
</code></pre>
<p>Last, a single statement to create and launch a new thread, with a "embedded" lock only around the shared field.</p>
<pre><code>new Thread
(
new ThreadStart(this.ManagerThreadEntryPoint)
)
{
Priority = new Func<ThreadPriorty>(() =>
{
lock (this.locker)
{
return this.managerThreadPriority;
}
})(),
Name = string.Format("Manager Thread ({0})", GetHashCode())
}
.Start();
</code></pre>
<p>Care to comment about the scoping of lock statements? For example, if I need to use a field in an <code>if</code> statement and that field needs to be locked, should I avoid locking the entire <code>if</code> statement? E.g.</p>
<pre><code>bool isDumb;
lock (this.locker) isDumb = this.FieldAccessibleByMultipleThreads;
if (isDumb) ...
</code></pre>
<p>Vs.</p>
<pre><code>lock (this.locker)
{
if (this.FieldAccessibleByMultipleThreads) ...
}
</code></pre>
http://stackoverflow.com/questions/1583678/c-regex-ignore-case-in-pattern2C# RegEx: Ignore case... in pattern?Chris2009-10-18T01:14:04Z2009-10-18T01:36:39Z
<p>I'm using System.Text.RegularExpressions.Regex.IsMatch(testString, regexPattern) to do some searches in strings. </p>
<p>Is there a way to specify in the regexPattern string that the pattern should ignore case? (I.e. without using Regex.IsMatch(testString, regexPattern, RegexOptions.IgnoreCase))</p>
http://stackoverflow.com/questions/1583297/simple-regex-negation0Simple regex negationChris2009-10-17T21:38:00Z2009-10-17T21:45:39Z
<p>Trying to match ONLY the first character in the sample below.</p>
<p>Sample string: <code>C/C++/Objective C/Objective-C/ObjectiveC/objectiveC</code></p>
<p>My faulty regex: <code>(?![O|o]bjective[ |-]?)C(?!\+\+)</code></p>
<p>Doh.</p>
http://stackoverflow.com/questions/1583086/linq-to-xml-applying-an-xpath1LINQ to XML: applying an XPathChris2009-10-17T20:06:31Z2009-10-17T20:09:16Z
<p>Can someone tell me why this program doesn't enumerate any items? Does it have something to do with the RDF namespace?</p>
<pre><code>using System;
using System.Xml.Linq;
using System.Xml.XPath;
class Program
{
static void Main(string[] args)
{
var doc = XDocument.Load("http://seattle.craigslist.org/sof/index.rss");
foreach (var item in doc.XPathSelectElements("//item"))
{
Console.WriteLine(item.Element("link").Value);
}
Console.Read();
}
}
</code></pre>
http://stackoverflow.com/questions/1414032/why-create-mock-objects9Why Create Mock Objects?Chris2009-09-12T02:14:40Z2009-10-16T05:49:35Z
<p>During a recent interview I was asked why one would want to create mock objects. My answer went something like, "Take a database--if you're writing test code, you may not want that test hooked up live to the production database where actual operations will be performed." </p>
<p>Judging by response, my answer clearly was not what the interviewer was looking for. What's a better answer?</p>
http://stackoverflow.com/questions/746121/asp-net-exposing-a-web-user-controls-controls0ASP.NET: Exposing a Web User Control's controlsChris2009-04-14T02:27:43Z2009-10-07T00:18:28Z
<p>I've created some Web User Controls (.ascx files) and dropped them into Pages. The user controls have some TextBoxes in them that I'd like the Page to be able to access directly.</p>
<p>What's the easiest (read: least time) way to expose these TextBoxes in the user controls to the Pages containing the user controls?</p>
<p>The two options I know are calling myUserControl.FindControl(id) from the Pages (does this even work from the Page?), and writing properties in the user controls to expose the TextBox values.</p>
<p>Neither seem ideal. FindControl() requires the Page know the IDs of the TextBoxes in the user controls, thereby breaking encapsulation and adding hard-coded strings, and writing a bunch of properties in the user controls will be very time consuming given the number of TextBoxes in these user controls.</p>
<p><strong>There's no way to declare these TextBoxes in my user controls be public instead of protected</strong>?</p>
http://stackoverflow.com/questions/514170/html-document-to-pdf2HTML document to PDF?Chris2009-02-05T01:24:50Z2009-10-04T10:41:48Z
<p>I've got an ASP.NET web page that is a dynamically generated report. For business reasons, this exact report needs to be produced as a PDF. What's the best way to do this? Setting the selected printer to Adobe PDF is not an option.</p>
<p>Learn to programmatically create PDFs from scratch? Is there a way to render it in some browser control, then save the ouput?</p>
http://stackoverflow.com/questions/647259/javascript-query-string4JavaScript query stringChris2009-03-15T03:50:41Z2009-09-30T16:02:58Z
<p>Is there any JavaScript library that makes a dictionary out of the query string, ASP.NET style?</p>
<p>Something that would be used like:</p>
<pre><code>var query = window.location.querystring["query"]?
</code></pre>
<p>Is a "query string" called something else outside the .NET realm? Why isn't location.search broken into a key/value collection already?</p>
<p>EDIT: I have written my own function, thanks, but does any major JavaScript library do this?</p>
http://stackoverflow.com/questions/1475483/html-scale-images-using-max-height-width0HTML: Scale images using max height/widthChris2009-09-25T04:46:01Z2009-09-25T05:31:16Z
<p>I've got a web page that displays a bunch of images. I want to make sure none of the images are greater than 200 pixels wide and 200 pixels in height. If one is, I'd like it scaled down so that the longest dimension is 200 pixels. </p>
<p>What's the best way to do this? CSS? JavaScript (jQuery okay)?</p>
http://stackoverflow.com/questions/1450528/net-verify-url-is-image1.NET: Verify URL is imageChris2009-09-20T07:33:28Z2009-09-25T04:57:31Z
<p>I have a requirement to verify that a user-specified URL is to an image. So really I need a way to determine that a URL string points to a valid image. How can I do this in .NET?</p>
http://stackoverflow.com/questions/1450528/net-verify-url-is-image/1475497#14754970Answer by Chris for .NET: Verify URL is imageChris2009-09-25T04:51:39Z2009-09-25T04:57:31Z<p>Here's what I'm using now. Any critiques?</p>
<pre><code>public class Image
{
public static bool Verifies(string url)
{
if (url == null)
{
throw new ArgumentNullException("url");
}
Uri address;
if (!Uri.TryCreate(url, UriKind.Absolute, out address))
{
return false;
}
using (var downloader = new WebClient())
{
try
{
var image = new Bitmap(downloader.OpenRead(address));
}
catch (Exception ex)
{
if (// Couldn't download data
ex is WebException ||
// Data is not an image
ex is ArgumentException)
{
return false;
}
else
{
throw;
}
}
}
return true;
}
}
</code></pre>
http://stackoverflow.com/questions/1475413/c-class-wide-exception-handling/1475461#14754610Answer by Chris for c# class-wide exception handlingChris2009-09-25T04:39:14Z2009-09-25T04:47:21Z<p>You'll have to create a logging mechanism (or use a third party implementation like log4net) and insert catch blocks everywhere, where the exceptions are logged. In other words, no.</p>
http://stackoverflow.com/questions/1174311/linq-to-sql-concurrency-resolution2LINQ to SQL: Concurrency resolutionChris2009-07-23T20:34:53Z2009-09-24T23:22:17Z
<p>Given this LINQ to SQL:</p>
<pre><code>using (var db = Database.Context)
{
var root = (from post in db.Post
where post.Id == rootPostId
select post).Single();
root.LastActivityUtc = DateTime.UtcNow;
db.SubmitChanges();
}
</code></pre>
<p>What will happen if the same record is concurrently being changed by another call to the same method (where this code lives) with the same rootPostId? Will an exception be thrown?</p>
<p>In such an event--concurrency conflict--I'd like to handle it by simple discarding the change so that just one update to LastActivityUtc is submitted instead of both, which will probably have the same value anyway.</p>
http://stackoverflow.com/questions/1414041/interviews-to-code-or-not-to-code2Interviews: to code or not to codeChris2009-09-12T02:21:27Z2009-09-12T03:39:01Z
<p>Is asking a person to solve a problem by whiteboarding code a good practice for conducting interviews?</p>
<p>Is this a good method for determining the qualifications of a candidate? What does this accomplish? Assuming the candidate has shown to sufficiently know the language in question, is whiteboarding code necessary? Might some developers perform more poorly than their capabilities under pressure?</p>
<p>How useful is this as a device to determine whether a job candidate is qualified?</p>
http://stackoverflow.com/questions/1414045/what-is-the-box-model1What is the "box model?"Chris2009-09-12T02:23:26Z2009-09-12T02:28:34Z
<p>During a recent interview for a front-end developer position I was asked what the box model was. I thought the interviewer was referring to testing (i.e. white box testing, black box testing). I was wrong.</p>
<p>What is the box model, in reference to front-end development?</p>
http://stackoverflow.com/questions/1162696/jquery-fadein0jQuery fadeIn()Chris2009-07-22T02:00:49Z2009-09-10T06:00:02Z
<p>What does it mean if fadeIn() goes from an opacity of 0% to 100% as soon as the fade timeperiod is up?</p>
<p>I've got this:</p>
<pre><code>function ThreadPost(post, appendToElementId) {
if (post != null) {
$("#" + appendToElementId).append("<ol id='" + post.Id + "'></ol>");
$("#" + post.Id).hide().html(PostHtml(post)).fadeIn(5000);
}
}
</code></pre>
<p>PostHtml() returns a "<code><li>....</li></code>".</p>
<p>When the page loads, the <code><ol></code> is hidden. Then, after 5 seconds, the <code><ol></code> suddenly appears. No fading occurs. Using Chrome.</p>
http://stackoverflow.com/questions/1325959/education-mba-of-tech-or-masters-in-is8Education: MBA of Tech or Masters in IS?Chris2009-08-25T03:54:12Z2009-09-09T22:13:25Z
<p>I recently worked at a start-up leading a small .NET dev team but the company went bust. I've been unemployed for the last six months and thinking of going back to school to help find me a job a year or two down the road.</p>
<p>After I get out of school, I'd like to work on the business side of software but am open to continue programming. Either way, I'd just like to continue working in software while maximizing income possibilities and having the most job opportunities.</p>
<p>What's more valuable for a geek looking to score a stable corporate gig? An MBA in Technology or and Masters of IS? The masters is cheaper and quicker.</p>
<p>Any thoughts would greatly be appreciated!</p>
<p>EDIT: Sorry if this isnt code-related enough. I don't know where else to ask a question like this. :(</p>
http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock17Volatile vs. Interlocked vs. lockChris2008-09-30T19:25:06Z2009-09-07T16:11:03Z
<p>Let's say that a class has a <code>public int counter</code> field that is accessed by multiple threads. This int is only incremented or decremented.</p>
<p>To increment this field, which approach should be used, and why?</p>
<ul>
<li><code>lock(this.locker) this.counter++;</code></li>
<li><code>Interlocked.Increment(ref this.counter);</code></li>
<li>Change the access modifier of <code>counter</code> to <code>public volatile</code></li>
</ul>
<p>Now that I've discovered <code>volatile</code>, I've been removing many <code>lock</code> statements and the use of <code>Interlocked</code>. But is there a reason not to do this?</p>
http://stackoverflow.com/questions/1381673/javascript-is-object-an-array0JavaScript: is object an array? [closed]Chris2009-09-04T21:37:25Z2009-09-05T03:02:25Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br />
<a href="http://stackoverflow.com/questions/1058427/how-to-detect-if-a-variable-is-an-array">How to detect if a variable is an array</a><br />
<a href="http://stackoverflow.com/questions/767486/how-do-you-check-if-a-variable-is-an-array-in-javascript">How do you check if a variable is an array in JavaScript ?</a> </p>
</blockquote>
<p>I was asked during an interview how to tell if a JavaScript object is an array, or simply an object. What's the answer?</p>
http://stackoverflow.com/questions/1363650/javascript-moving-element-in-the-dom1JavaScript moving element in the DOMChris2009-09-01T17:23:41Z2009-09-01T18:36:53Z
<p>Let's say I have three <code><div></code> elements on a page. How can I swap positions of the first and third <code><div></code>? jQuery is fine.</p>
http://stackoverflow.com/questions/1352232/identifying-anonymous-users1Identifying anonymous usersChris2009-08-29T19:57:33Z2009-08-29T20:53:25Z
<p>If I had a poll on my site, and I didn't want to require a registration to vote, but I only wanted each visit one, how might I do this?</p>
<p>Let's say a visitor from IP 123.34.243.57 visits the site and votes. Would it then be safe to disallow anyone from 123.34.243.* from voting? Is this a good strategy?</p>
<p>What's another one?</p>
http://stackoverflow.com/questions/1583678/c-regex-ignore-case-in-pattern/1583715#1583715Comment by Chris on C# RegEx: Ignore case... in pattern?Chris2009-10-18T01:29:00Z2009-10-18T01:29:00ZIs the ending (?-i) required or can it be omitted?http://stackoverflow.com/questions/1583678/c-regex-ignore-case-in-pattern/1583696#1583696Comment by Chris on C# RegEx: Ignore case... in pattern?Chris2009-10-18T01:23:09Z2009-10-18T01:23:09ZThat's just JavaScript if I'm not mistaken.http://stackoverflow.com/questions/1583086/linq-to-xml-applying-an-xpath/1583090#1583090Comment by Chris on LINQ to XML: applying an XPathChris2009-10-17T20:14:25Z2009-10-17T20:14:25ZWinner winner, chicken dinner.http://stackoverflow.com/questions/1475483/html-scale-images-using-max-height-widthComment by Chris on HTML: Scale images using max height/widthChris2009-09-25T04:54:34Z2009-09-25T04:54:34ZAs the question implies, JavaScript is fine :).http://stackoverflow.com/questions/1325959/education-mba-of-tech-or-masters-in-isComment by Chris on Education: MBA of Tech or Masters in IS?Chris2009-08-25T04:01:29Z2009-08-25T04:01:29ZHaha. I already get crap from companies for having a BS in MIS instead of CS; I hope I wouldn't get even more crap with an MBA looking to write code!http://stackoverflow.com/questions/1297894/html5-canvas-web-page-preview/1298067#1298067Comment by Chris on HTML5/Canvas: Web page preview?Chris2009-08-19T06:26:44Z2009-08-19T06:26:44ZThat's exactly what I'd like to do but with a little more granularity with the preview. Thanks, I'll examine it!http://stackoverflow.com/questions/1174448/jquery-animate-problems/1214613#1214613Comment by Chris on jQuery animate problemsChris2009-07-31T21:54:33Z2009-07-31T21:54:33ZDid that. Rolled my own. Works great for a couple elements, but if you're trying to fade 20 or 30 at a time, controlling how long the fade takes to occur becomes a very complex issue because of timer idiosyncrasies. Thanks though.http://stackoverflow.com/questions/1209173/javascript-settimeout-slows-down-under-heavy-load/1209201#1209201Comment by Chris on JavaScript setTimeout() slows down under heavy loadChris2009-07-30T20:43:34Z2009-07-30T20:43:34ZI was thinking that one timer might be the way to go, but I feared having to implement the change. :) I actually decided to roll my own because I was using jQuery to animate() and it failed to actually fade about 10% of the time. Unfortunately, that's an unacceptable error rate. I'll check out the article. Thanks much!http://stackoverflow.com/questions/1191252/asp-net-sql-server-hosting/1191260#1191260Comment by Chris on ASP.NET/SQL Server hosting Chris2009-07-28T00:20:07Z2009-07-28T00:20:07ZThat's exactly what I'm looking for--Management Studio access.http://stackoverflow.com/questions/1191252/asp-net-sql-server-hosting/1191266#1191266Comment by Chris on ASP.NET/SQL Server hosting Chris2009-07-28T00:13:41Z2009-07-28T00:13:41ZIt's because I have three tables with a combined 30K records or so I need to load into the database. I'm not SQL pro so I don't know any other way to get these records in there w/o doing a backup and restore.http://stackoverflow.com/questions/1190258/html-empty-linked-anchor/1190271#1190271Comment by Chris on HTML: Empty-linked anchorChris2009-07-27T21:03:31Z2009-07-27T21:03:31ZAnd what are the alternatives?http://stackoverflow.com/questions/1174448/jquery-animate-problems/1174464#1174464Comment by Chris on jQuery animate problemsChris2009-07-23T21:09:00Z2009-07-23T21:09:00ZThat fades IN the ENITRE element. I'm fading OUT the BACKGROUND color.http://stackoverflow.com/questions/1174448/jquery-animate-problems/1174467#1174467Comment by Chris on jQuery animate problemsChris2009-07-23T21:08:12Z2009-07-23T21:08:12ZThis does not change the opacity of the background color.http://stackoverflow.com/questions/1174311/linq-to-sql-concurrency-resolution/1174364#1174364Comment by Chris on LINQ to SQL: Concurrency resolutionChris2009-07-23T20:45:49Z2009-07-23T20:45:49ZThe whole point of using LINQ to SQL, at least for me, is to avoid having to create a stored procedure. I'm not using Architect Edition of VS, so I'd rather not open SQL Management Studio. Go ahead, call me lazy. :)http://stackoverflow.com/questions/1174205/jquery-simplest-lightboxComment by Chris on jQuery: Simplest lightbox?Chris2009-07-23T20:37:54Z2009-07-23T20:37:54ZJust looking to hear whatever others with the same requirements have been able to implement with ease.