User Josh - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:08:16Z http://stackoverflow.com/feeds/user/26160 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1820927/request-monitoring-in-chrome/1820958#1820958 1 Answer by Josh for Request Monitoring in Chrome Josh 2009-11-30T16:46:49Z 2009-11-30T16:46:49Z <p>You could use <a href="http://www.fiddlertool.com/" rel="nofollow">Fiddler</a> which is a good free tool.</p> http://stackoverflow.com/questions/1792817/c-nunit-is-it-possible-to-test-that-a-datetime-is-very-close-but-not-necessar/1792844#1792844 2 Answer by Josh for C#, NUnit: Is it possible to test that a DateTime is very close, but not necessarily equal, to another? Josh 2009-11-24T20:51:36Z 2009-11-24T20:51:36Z <p>You could check subtract them and check the timespan.</p> <pre><code> DateTime.Now.Subtract(thing.Created).TotalSeconds </code></pre> <p>Gives you the totalseconds. </p> http://stackoverflow.com/questions/1791442/shared-functionality-on-usercontrol-and-form/1791459#1791459 1 Answer by Josh for shared functionality on usercontrol and form Josh 2009-11-24T17:03:44Z 2009-11-24T17:03:44Z <p>Instead of having the Forms &amp; UserControls inherit from a base class can you encapsulate the logic inside of a self contained object so that each form will new up? Then you can limit in the base class just the instantion and interaction with this object which hopefuly is minimal so having it done twice isn't a big deal.</p> http://stackoverflow.com/questions/1791333/how-to-sharethe-web-application-session-with-a-webservice/1791446#1791446 0 Answer by Josh for how to sharethe web application session with a webservice Josh 2009-11-24T17:00:55Z 2009-11-24T17:00:55Z <p>If your building a WCF service you can set this attribute on the class: </p> <pre><code>[AspNetCompatibilityRequirements (RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] </code></pre> <p>Which should give you access. If your using asmx I don't remeber off the top of my head</p> http://stackoverflow.com/questions/1791288/secured-client-side-script/1791313#1791313 1 Answer by Josh for Secured Client-Side script Josh 2009-11-24T16:43:17Z 2009-11-24T16:48:44Z <p>Script is not secure, also what level of security do you need? If you download anything to the client the client will be able to look at the algorithim. Of course if you download a native dll, then decompiling it will be harder, the question is if this is good enough.</p> <p>That an important thing most people miss when evaluating security nothing is trully 100% secure. Because your server admin could go in and steal the binaries off your server. And if your using third party hosting who knows who has access to the server. </p> <p>The idea is to raise the bar. Do you want to prevent the average script kiddie? Obfuscate it, make it hard for them to understand the gain of understanding the algorithim might not justify the pain in trying to understand it. </p> <p>The best that you can probally do is keep the algorithim on the server and expose it via a web service.</p> http://stackoverflow.com/questions/1791153/difference-between-arrays-single-dimensional-arrays-in-c/1791184#1791184 3 Answer by Josh for Difference between Arrays & Single-Dimensional Arrays in c# Josh 2009-11-24T16:25:58Z 2009-11-24T16:25:58Z <p><a href="http://msdn.microsoft.com/en-us/library/aa288453%28VS.71%29.aspx" rel="nofollow">Arrays</a> is a general term refering to various types of arrays in C# (<a href="http://msdn.microsoft.com/en-us/library/0a7fscd0%28VS.71%29.aspx" rel="nofollow">Single</a> Dimension, <a href="http://msdn.microsoft.com/en-us/library/2yd9wwz4%28VS.71%29.aspx" rel="nofollow">Multi-Dimension</a> or <a href="http://msdn.microsoft.com/en-us/library/2s05feca%28VS.71%29.aspx" rel="nofollow">Jagged</a>).</p> <p>Single Dimension arrays are just one specific type of array in C#.</p> http://stackoverflow.com/questions/1791133/settimeoutfn-delay-doesnt-delay-as-expected/1791145#1791145 10 Answer by Josh for setTimeout(fn(), delay) doesnt delay as expected Josh 2009-11-24T16:19:48Z 2009-11-24T16:19:48Z <p>Try</p> <p>setTimeout(myFn,20000);</p> <p>When you say setTimeout(myFn(),20000) your telling it to evaluate myFn() and call the return value after 20 seconds.</p> http://stackoverflow.com/questions/1791075/what-to-avoid-when-a-project-has-been-partially-outsourced/1791121#1791121 2 Answer by Josh for What to avoid when a project has been partially outsourced? Josh 2009-11-24T16:16:36Z 2009-11-24T16:16:36Z <p>Setup a source server on your network for them to commit changes too. This will ensure you have access to the source as the project progresses. </p> <p>Find someone who can speak fluently your native toungue. Many issues I have seen are due to language barriers. Also be careful not to use idioms or slang as they don't translate well. Keep the language very very dry. </p> <p>Find a company you can partner with and grow as you use them over and over you will be able to improve the relationship and solve many of these issues. </p> <p>The final thing is don't trust they understand you or they are going to deliver. Follow up...</p> http://stackoverflow.com/questions/1791049/flag-column-or-foreign-key/1791096#1791096 0 Answer by Josh for Flag column or foreign key? Josh 2009-11-24T16:12:06Z 2009-11-24T16:12:06Z <p>In the first model you say an Enterprise should have a single primary domain. Expand that a moment and say it will have a single primary domain. At this point you'd be inclined to mark that column as not nullable.</p> <p>The problem then is you won't be able to insert data since you've created a circular depedancy. You can't insert an enterprise without a domain and you can't insert a domain without an enterprise. </p> <p>I prefer the first model as it is cleaner and more explicit. Your model enforces that there is a single primary domain where there is nothing in the second model so you'd be forced to enforce this rule using some other mechanism.</p> http://stackoverflow.com/questions/1758817/deploying-wcf-application/1758852#1758852 1 Answer by Josh for Deploying WCF application Josh 2009-11-18T20:31:35Z 2009-11-18T20:31:35Z <p>You could use a powershell script or some other type of script to x-copy deploy the site. Then if you have any config changes to make add those into the script as well. </p> <p>You could use setup and install packages but I don't recommend them unless your distributing your software. They can be a pain at times.</p> http://stackoverflow.com/questions/1012155/parent-child-tree-hierarchy-with-nhibernate/1012187#1012187 0 Answer by Josh for Parent-child tree hierarchy with NHibernate Josh 2009-06-18T11:36:29Z 2009-11-10T17:52:50Z <p>I mapped a similar structure like:</p> <pre><code>&lt;class name="Folder" lazy="false"&gt; &lt;id column="Id" name="Id"&gt; &lt;generator class="guid"/&gt; &lt;/id&gt; &lt;property name="Name" column="FolderText"&gt;&lt;/property&gt; &lt;bag name="Children" cascade="all" fetch="subselect" inverse="true"&gt; &lt;key column="ParentId" /&gt; &lt;one-to-many class="Folder" /&gt; &lt;/bag&gt; &lt;many-to-one class="Folder" name="Parent" column="ParentId" insert="true" /&gt; </code></pre> <p><strong>Edit</strong></p> <p>I am taking a total shot in the dark now since your schema is not what I've used, and now I understand why you asked this:-) Anyways here's is a thought. Please let us know if this worked of if you find another solution:</p> <pre><code> &lt;join fetch="join" table="GroupLinks"&gt; &lt;key column="ChildId"&gt;&lt;/key&gt; &lt;many-to-one name="Parent" class="Folder" column="ParentId"/&gt; &lt;/join&gt; </code></pre> <p>I might have the relationship backwards, but this at least would get you the parent. </p> http://stackoverflow.com/questions/524899/changing-favicon-based-on-theme 1 Changing favicon based on theme Josh 2009-02-08T00:51:34Z 2009-11-07T16:37:28Z <p>Is there a built in way to change the favicon for different themes? If not would it be as simple as creatign a custom control to emit the link tag with the correct url to the icon?</p> <h1>Update</h1> <p>So based on what I have found in order to do this, it looks like I am going to have to create an http handler that will intercept all calls for favicon.ico.</p> <p>This handler will then determine which theme we are using (in my case it will be based on the domain name), it will then output the themed favicon.ico from the various themes folders. </p> <p>Since I am supporting IE7, I'm thinking this is the only option I have. Still curious if anyone else has a better way.</p> http://stackoverflow.com/questions/1689754/using-a-pointer-to-a-local-variable-in-dynamic-sql/1689825#1689825 0 Answer by Josh for Using a pointer to a local variable in Dynamic SQL Josh 2009-11-06T19:33:16Z 2009-11-06T19:33:16Z <pre><code>DECLARE @SQLCmd varchar SET @SQLCmd = 'SELECT MyNumber = ' + CAST(@SD1 AS VARCHAR) </code></pre> <p>VARCHAR defaults to 30 characters I believe which should be large enough. If you want to make this a parameterized query you could execute it using sp_executesql and pass the parameter value in.</p> http://stackoverflow.com/questions/654921/how-big-can-a-user-agent-string-get 4 How big can a user agent string get? Josh 2009-03-17T16:10:57Z 2009-11-06T15:12:04Z <p>If you were going to store a user agent in a database, how large would you accomdate for?</p> <p>I found this <a href="http://technet.microsoft.com/en-us/library/bb496341.aspx" rel="nofollow">technet article</a> which recommends keeping UA under 200. It doesn't look like this is defined in the HTTP specification at least not that I found. My UA is already 149 characters, and it seems like each version of .net will be adding to it.</p> <p>I know I can parse the string out and break it down but I'd rather not.</p> http://stackoverflow.com/questions/1681892/appsettings-in-markup-issue/1681945#1681945 3 Answer by Josh for AppSettings in markup issue Josh 2009-11-05T16:47:36Z 2009-11-05T16:47:36Z <p>When I do this I usually create a helper class I like to call Config and put a static property on there for the App Settings in question.</p> <p>Then your code would become:</p> <pre><code>&lt;script type="text/javascript" src="&lt;%=Config.ProxyScriptUrl%&gt;"/&gt; </code></pre> <p>Some of the other benefits of this is that if I decide to move the ProxyScriptUrl to a different configuration mechanism I only have to modify the one class. Your config class might look like:</p> <pre><code>public static class Config { public static string ProxyScriptUrl { get { return WebConfigurationManager.AppSettings["proxyScriptUrl "]; } } } </code></pre> http://stackoverflow.com/questions/1681906/launch-multiple-stored-procedures-to-run-in-the-background-on-sql-server-expres/1681925#1681925 2 Answer by Josh for Launch multiple stored procedures to run 'in the background' on SQL Server Express Edition Josh 2009-11-05T16:45:33Z 2009-11-05T16:45:33Z <p>No this isn't possible as you have described it. You could run multiple SQL Jobs which will execute the procedures concurrently/</p> http://stackoverflow.com/questions/1677050/getting-your-asp-net-ajax-component-to-work-with-find 0 Getting your asp.net ajax component to work with $find() Josh 2009-11-04T22:14:37Z 2009-11-04T23:22:25Z <p>I am working on an ASP.net Ajax custom control, I have tried to derive from ScriptControl and a I also modified my code to implement the IScriptControl interface and do the nessecary wiring in the PreRender and Render methods. </p> <p>The frameworks spits out a call to $create:</p> <pre><code> Sys.Application.add_init(function() { $create(MyControl.DynamicFormAjax, {"allowMoveRows":true,"isEditMode":true}, null, null,$get("ctl00_body_dynaForm")); </code></pre> <p>The control is initialized and I draw itself during the initialize routine. </p> <p>The issue I am having is that my page is then unable to get a reference to the Component (I can get the dom element just fine). I have tried to use $find("dynaForm") but it returns null. </p> <p>I have also looked at Sys.Application.getComponents() and the only component I see is the Ajax Toolkit's Modal Popup that is also on this same page. </p> <p>Thanks for any help! </p> http://stackoverflow.com/questions/1677050/getting-your-asp-net-ajax-component-to-work-with-find/1677371#1677371 0 Answer by Josh for Getting your asp.net ajax component to work with $find() Josh 2009-11-04T23:22:25Z 2009-11-04T23:22:25Z <p>I've managed to resolve my issue. It appeared that when the $create() would check the get_id() property of my component it would return an empty string. </p> <p>I realized I had redefined my own _element member and a get_element() property. I removed these and it started working.</p> <p>When I debugged this it looked like this.element was now returning an array of elements which is why the id property was undefined. Kind of odd that by defining a this._element=[element] in the function's constructor resulted in this._element becoming an array when called by the get_id() method</p> http://stackoverflow.com/questions/1662214/authentication-for-asp-net-website-without-using-any-database/1662238#1662238 4 Answer by Josh for Authentication for asp.net website without using any database Josh 2009-11-02T16:22:08Z 2009-11-02T16:22:08Z <p>Using forms authentication you can store the credentials in the config file. Check out this <a href="http://msdn.microsoft.com/en-us/library/da0adyye.aspx" rel="nofollow">MSDN</a> Link</p> http://stackoverflow.com/questions/1662190/get-a-files-last-modified-date-in-vb6/1662212#1662212 1 Answer by Josh for Get a file's last modified date in VB6 Josh 2009-11-02T16:15:46Z 2009-11-02T16:15:46Z <p>You can use the FileSystemObject here's an <a href="http://www.devx.com/tips/Tip/13807" rel="nofollow">example</a></p> <p>You can also check out the <a href="http://msdn.microsoft.com/en-us/library/sheydkke%28VS.85%29.aspx" rel="nofollow">MSDN documentation</a> the samples are for scripting but they should be translatable to VB6 easily.</p> http://stackoverflow.com/questions/1662150/is-using-db4o-for-web-sites-a-judicious-choice/1662191#1662191 1 Answer by Josh for Is Using Db4o For Web Sites a judicious choice? Josh 2009-11-02T16:10:30Z 2009-11-02T16:10:30Z <p>That depends, what kind of site your creating, the traffic your expecting etc...Are you going to handle a million requests a second, or 100 a minute...Does your domain justify using a Object Database? Do you really need it?</p> <p>In general, most sites are not heavy hitters so they might not require all the scale out functionality (I believe and this is only a belief that traditional RDBMS have been tested and designed to handle extreme loads where as Object DB's might not have been given the same attention).</p> <p>So then the question is does your domain justify this? Your going to base a core piece of your site on a technology that you will not find a lot of experts in. So how do you handle turn over rate? Are you willing to take the cost associated with training all current and future employees on this?</p> http://stackoverflow.com/questions/1662103/request-for-creational-design-pattern-suggestion/1662152#1662152 1 Answer by Josh for Request for Creational Design/Pattern Suggestion Josh 2009-11-02T16:01:42Z 2009-11-02T16:01:42Z <p>You could try and factor the differences into seperate classes that are then provided so for example:</p> <pre><code>IRelatedType theObject = TheFactory.CreateObject(SomeEnum.SomeValue); RelatedTypeHelper theHelper=TheFactory.CreateHelper(theObject); theHelper.DoSpecialThing(theObject); </code></pre> <p>Now you won't have to have all the if else blocks, and if you add a new type which requires new handling, you just whip up a new helper implement the required pieces and you should be good to go. The helper should help document this process. </p> <p>I would also question why a single method would have such a different implementation for specialVal and StatementVal could be your sample, but It makes me curious what your really doing here. can you simplify things back taking a step back and questioning the point of these being included in this specific hierarchy.</p> http://stackoverflow.com/questions/1662038/retrieve-ado-recordset-field-names-classic-asp/1662082#1662082 1 Answer by Josh for Retrieve ADO Recordset Field names (Classic ASP) Josh 2009-11-02T15:49:12Z 2009-11-02T15:49:12Z <p>Given an ado record set you could do roughly the following (This is in psuedo code):</p> <pre><code>foreach (field in rs.Fields) { alert(field.Name); } </code></pre> <p>This will give you the name of the field check out this <a href="http://www.w3schools.com/ADO/prop%5Ffield%5Fname.asp" rel="nofollow">documentation</a>. </p> http://stackoverflow.com/questions/431203/does-the-order-of-fields-in-c-matter 3 Does the order of fields in C# matter? Josh 2009-01-10T16:06:25Z 2009-10-23T17:53:21Z <p>This question is inspired by Jon Skeet's answer: <a href="http://stackoverflow.com/questions/431091/is-there-a-c-equivalent-to-cs-access-modifier-regions#431105">http://stackoverflow.com/questions/431091/is-there-a-c-equivalent-to-cs-access-modifier-regions#431105</a></p> <p>He makes a comment that it is possible for the order of fields in a file to matter. I am guessing that this has to do with the order that the fields are initialized, but I think it's a dangerous enough thing to code based on this side effect that it warranted its own question and discussion. </p> <p>Are there other thoughts around how the order of fields within your code file could be manipulated and what impact that might have?</p> http://stackoverflow.com/questions/1603363/vs2008-not-picking-up-recently-added-web-controls/1603413#1603413 0 Answer by Josh for VS2008 not picking up recently added web controls Josh 2009-10-21T20:29:59Z 2009-10-21T20:29:59Z <p>Check out my answer to my question here: <a href="http://stackoverflow.com/questions/658490/web-site-reports-xxx-does-not-exist-in-current-context-after-upgrade-to-vs2008-sp/658681#658681">http://stackoverflow.com/questions/658490/web-site-reports-xxx-does-not-exist-in-current-context-after-upgrade-to-vs2008-sp/658681#658681</a></p> <p>There is a hotfix for this if your getting the same issue I was.</p> http://stackoverflow.com/questions/1595026/how-can-i-preview-an-image-before-upload-in-c/1595056#1595056 0 Answer by Josh for How can I preview an image before upload in C#? Josh 2009-10-20T14:33:58Z 2009-10-20T14:33:58Z <p>I've done this by uploading the image to the server into a temporary location, then just using a standard image tag. I'm not sure how you can load a preview without going to some other means such as ActiveX, Silverlight etc...</p> <p>The key here is your giving the user the appearance that they are previewing it, without actually previewing it.</p> http://stackoverflow.com/questions/546392/forcing-client-ids-in-asp-net/546422#546422 5 Answer by Josh for Forcing client ids in ASP.NET Josh 2009-02-13T15:46:04Z 2009-10-19T16:56:50Z <p>What I tend to do is dynamically generate javascript methods which handle this. You can do this in markup or code behind so for example:</p> <pre><code>&lt;script language="javascript" type="text/javascript"&gt; function doXYZ() { $("#" + getListBoxId()).css(...) } function getListBoxId() { return "&lt;%=this.myListBox.ClientId&gt;"; } &lt;/script&gt; </code></pre> <p>You can also build the functions in the code behind and register them.</p> <p><strong>EDIT</strong></p> <p>A couple months ago I needed to fix the id of some server controls, I managed to hack it in and I described my method here <a href="http://jberke.blogspot.com/2009/07/turning-off-aspnets-unique-id.html" rel="nofollow">here</a>.</p> <p>Basically you need put the controls inside a naming container like a user control, and then override a couple of properties which prevents the child controls from getting their uniqueid.</p> http://stackoverflow.com/questions/1549198/finding-all-namespaces-in-an-assembly-using-reflection-dotnet/1549217#1549217 1 Answer by Josh for Finding all Namespaces in an assembly using Reflection (DotNET) Josh 2009-10-10T22:10:32Z 2009-10-10T22:10:32Z <p>Here's a sort of linq'ish way, it still in essence is itterating over every element but the code is much cleaner.</p> <pre><code>var nameSpaces = from type in Assembly.GetExecutingAssembly().GetTypes() select type.Namespace; nameSpaces = nameSpaces.Distinct(); </code></pre> <p>Also if your auto generating code, you might be better off to fully qualify everything, then you won't have to worry about naming conflicts in the generated code.</p> http://stackoverflow.com/questions/503518/asp-net-ajax-how-to-implement-pagemethods-feature-of-the-scriptmanager-in-a-user/503537#503537 2 Answer by Josh for ASP.NET AJAX: How to implement PageMethods feature of the scriptmanager in a user control. Josh 2009-02-02T15:13:50Z 2009-10-05T01:13:23Z <p>No this can't be done. See "<a href="http://forums.asp.net/p/977525/1242935.aspx" rel="nofollow">PageMethods in UserControl</a>" and "<a href="http://stackoverflow.com/questions/249304/asp-net-ajax-page-methods-from-usercontrol">ASP.NET AJAX Page Methods from UserControl</a>".</p> http://stackoverflow.com/questions/1473636/how-do-i-white-label-my-asp-net-mvc-application/1473662#1473662 1 Answer by Josh for How do I "White Label" my ASP.Net MVC Application? Josh 2009-09-24T19:20:27Z 2009-09-24T19:20:27Z <p>For the business logic I would abstract the differences into a separate libraries, and then you can use an IoC / DI pattern or provider pattern to resolve the correct business logic at runtime. </p> <p>As for the content I would look into themes. Essentially you could have your build server build all the code once, then when you package the code you choose which assemblies you need and use the appropriate configuration, and choose the appropiate theme folder for the client at hand.</p> <p>I don't like using # directives in this case. If you think about it your unit tests would have to run for each conditional you have. If you remove the conditionals and abstract the differences your unit tests can just run on all the pluggable assemblies at once.</p> http://stackoverflow.com/questions/1821488/c-determine-property-type-at-runtime/1821518#1821518 Comment by Josh on C# - Determine property type at runtime Josh 2009-11-30T18:32:20Z 2009-11-30T18:32:20Z I agree...I'd expose both properties separately and let the caller decide what to do. http://stackoverflow.com/questions/1821488/c-determine-property-type-at-runtime Comment by Josh on C# - Determine property type at runtime Josh 2009-11-30T18:31:34Z 2009-11-30T18:31:34Z Using object here you wouldn't have any boxing going on. Boxing occurs when you need to treat a value type as an object reference (ie calling methods on an integer) http://stackoverflow.com/questions/1820927/request-monitoring-in-chrome/1820958#1820958 Comment by Josh on Request Monitoring in Chrome Josh 2009-11-30T16:57:28Z 2009-11-30T16:57:28Z Ahh ok can't help with that I am sorry good luck http://stackoverflow.com/questions/1796951/how-can-i-validate-a-field-which-is-to-be-inserted-into-a-float-column-in-the-dat Comment by Josh on How can I validate a field which is to be inserted into a float column in the database? Josh 2009-11-25T13:38:26Z 2009-11-25T13:38:26Z Check to make sure the field contains data that can fit inside of a float. How you do that well depends on the language, and what not...voting to close because this question is way to vague. http://stackoverflow.com/questions/1792817/c-nunit-is-it-possible-to-test-that-a-datetime-is-very-close-but-not-necessar/1792846#1792846 Comment by Josh on C#, NUnit: Is it possible to test that a DateTime is very close, but not necessarily equal, to another? Josh 2009-11-24T20:53:31Z 2009-11-24T20:53:31Z You want to use TotalSeconds Seconds get you the seconds component so if the span is 61 seconds total, this would pass your check. http://stackoverflow.com/questions/1791153/difference-between-arrays-single-dimensional-arrays-in-c Comment by Josh on Difference between Arrays & Single-Dimensional Arrays in c# Josh 2009-11-24T16:35:10Z 2009-11-24T16:35:10Z Stevo I think your right, makes sense and Marc has a good explanation of that http://stackoverflow.com/questions/1791153/difference-between-arrays-single-dimensional-arrays-in-c Comment by Josh on Difference between Arrays & Single-Dimensional Arrays in c# Josh 2009-11-24T16:27:47Z 2009-11-24T16:27:47Z Great analogy Martinho... http://stackoverflow.com/questions/1791133/settimeoutfn-delay-doesnt-delay-as-expected Comment by Josh on setTimeout(fn(), delay) doesnt delay as expected Josh 2009-11-24T16:26:53Z 2009-11-24T16:26:53Z When I first moved out of the service side code into the client side it was my first mistake... http://stackoverflow.com/questions/1791075/what-to-avoid-when-a-project-has-been-partially-outsourced/1791109#1791109 Comment by Josh on What to avoid when a project has been partially outsourced? Josh 2009-11-24T16:17:49Z 2009-11-24T16:17:49Z Having teams spanning sites can make dealing with source control interesting. We kept running into cases where we needed access to a file that was checked out by a guy in India, so we'd be stuck until the next day. http://stackoverflow.com/questions/1791043/query-to-list-the-logins-and-the-databases-they-have-access Comment by Josh on Query to list the logins and the databases they have access Josh 2009-11-24T16:05:24Z 2009-11-24T16:05:24Z What database system you using its different for each type. http://stackoverflow.com/questions/1681966/is-there-a-localized-membership-status-message-in-the-framework Comment by Josh on Is there a localized membership status message in the framework? Josh 2009-11-05T16:54:05Z 2009-11-05T16:54:05Z asp.net I assume? http://stackoverflow.com/questions/1681906/launch-multiple-stored-procedures-to-run-in-the-background-on-sql-server-expres/1681925#1681925 Comment by Josh on Launch multiple stored procedures to run 'in the background' on SQL Server Express Edition Josh 2009-11-05T16:52:16Z 2009-11-05T16:52:16Z Whats calling the procedure? Why not have the caller handle the threading? http://stackoverflow.com/questions/1681906/launch-multiple-stored-procedures-to-run-in-the-background-on-sql-server-expres/1681935#1681935 Comment by Josh on Launch multiple stored procedures to run 'in the background' on SQL Server Express Edition Josh 2009-11-05T16:50:27Z 2009-11-05T16:50:27Z The procedures won't run in parallel. SQL can run a query in parallel but it wouldn't run two seperate statements in parallel. http://stackoverflow.com/questions/1662214/authentication-for-asp-net-website-without-using-any-database/1662227#1662227 Comment by Josh on Authentication for asp.net website without using any database Josh 2009-11-02T16:23:10Z 2009-11-02T16:23:10Z Why do you need a custom profile provider to store credentials in the config file? This is included out of the box in forms authentication http://stackoverflow.com/questions/1662038/retrieve-ado-recordset-field-names-classic-asp/1662082#1662082 Comment by Josh on Retrieve ADO Recordset Field names (Classic ASP) Josh 2009-11-02T16:03:11Z 2009-11-02T16:03:11Z No problem, glad to help!