User JasonS - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T14:05:24Zhttp://stackoverflow.com/feeds/user/1865http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/69448/how-do-i-keep-resharper-files-out-of-svn4How do I keep Resharper Files out of SVN?JasonS2008-09-16T04:46:29Z2009-12-14T09:13:50Z
<p>I am using VS2008 and Resharper. Resharper creates a directory _Resharper.ProjectName. These files provide no value for source control that I am aware of and cause issues when committing changes. How can I get SVN to ignore them? I am using TortoiseSVN as my interface for SVN.</p>
<p>EDIT: You guys are fast.</p>
http://stackoverflow.com/questions/163531/set-asp-net-version-using-wix4Set ASP.Net version using WiXJasonS2008-10-02T17:22:50Z2009-11-24T05:04:02Z
<p>I am creating an installer for an ASP.Net website using WiX. How do you set the ASP.Net version in IIS using WiX?</p>
http://stackoverflow.com/questions/1518232/asp-repeater-inside-dynamic-control-losing-items/1518244#15182440Answer by JasonS for asp repeater inside dynamic control losing itemsJasonS2009-10-05T04:18:12Z2009-10-05T04:18:12Z<p>It is normal. Viewstate is not restored in dynamically created controls. Have a look at this article: <a href="http://msdn.microsoft.com/en-us/library/kyt0fzt1%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/kyt0fzt1(VS.71).aspx</a></p>
http://stackoverflow.com/questions/917823/are-there-any-good-e-commerce-extensions-plugins-for-umbraco3Are there any good e-commerce extensions/plugins for Umbraco?JasonS2009-05-27T20:18:55Z2009-07-23T07:08:00Z
<p>I'm working on a project that will use Umbraco for CMS capability, but also has a fairly simple ecommerce requirement. I'm aware of Commerce4Umbraco, are there others? Or, should I look elsewhere for simple e-commerce functionality. Would be nice to use the same platform for CMS and e-commerce... stuck with Umbraco though.</p>
http://stackoverflow.com/questions/1121573/anyone-know-of-an-asp-net-c-cms-type-system-with-a-forms-module/1121612#11216123Answer by JasonS for Anyone know of an Asp.Net C# CMS type system with a Forms ModuleJasonS2009-07-13T19:37:08Z2009-07-13T19:37:08Z<p>Check the BizForms functionality in <a href="http://www.kentico.com" rel="nofollow">Kentico</a>. I have used Kentico for a bit, just getting into the forms part, but seems like it will meet most, maybe even all of your requirements.</p>
http://stackoverflow.com/questions/1071845/how-do-i-convert-a-web-page-to-pdf-in-asp-net/1071873#10718730Answer by JasonS for How do I convert a web page to PDF in ASP.NET?JasonS2009-07-01T23:49:54Z2009-07-01T23:49:54Z<p>You can also use the MS ReportViewer control and render your PDF from code if you don't want the actual viewer on the page.</p>
http://stackoverflow.com/questions/1059614/simple-html-that-comes-out-looking-way-off/1059679#10596790Answer by JasonS for Simple HTML that comes out looking way off?JasonS2009-06-29T18:14:02Z2009-06-29T18:14:02Z<p>Use a fixed width for your table, and each td tag. You have the width of the table set to 100%, and a fixed width on the first tag. The second and third td tags are adjusting based on the content within the td tags to fill the 100% width on the table tag.</p>
http://stackoverflow.com/questions/131600/how-do-i-create-an-installer-for-a-net-website-windows-service-and-more1How do I create an installer for a .Net website, Windows Service, and more???JasonS2008-09-25T05:29:44Z2009-06-25T23:15:07Z
<p>I need to create an installer program that will do install the following:</p>
<ol>
<li>ASP.Net Website </li>
<li>Windows Service</li>
<li>SQL Express if it isn't installed
and the user doesn't have a SQL
Server</li>
<li>Dundas Charts</li>
<li>ASP.Net AJAX v.1.0</li>
<li>ReportViewer control (for 2.0 Framework)</li>
<li>Check Framework prerequisites (2.0)</li>
<li>Configure IIS and app.config (data connection strings, etc.)</li>
</ol>
<p>Is it realistic to be able to do this with a VS Setup Project? Or, should I be looking at other install tools? </p>
http://stackoverflow.com/questions/248527/how-do-i-conditionally-suppress-application-exceptions-written-to-the-event-log2How do I conditionally suppress application exceptions written to the event log?JasonS2008-10-29T21:40:18Z2009-06-25T22:30:17Z
<p>I am working on a windows service that polls for a connection to a network enabled devices every 15 seconds. If the service is not able to connect to a device, it throws an exception and tries again in 15 seconds. All of this works great.</p>
<p>But, lets say one of the devices is down for a day or more. I am filling up my exception log with the same exception every 15 seconds. Is there a standard way to prevent an exception from being written to the event log if the exception being thrown hasn't changed in the last x number of hours?</p>
http://stackoverflow.com/questions/306992/how-do-i-encrypt-app-config-file-sections-during-install-with-wix3How do I encrypt app.config file sections during install with WiX?JasonS2008-11-20T21:54:24Z2009-06-25T22:29:21Z
<p>I have found an example for encrypting a web.config during installation <a href="http://madtechnology.wordpress.com/2007/05/04/using-wix-to-secure-a-connection-string/" rel="nofollow">here</a>, but my app is a windows service. The aspnetreg_iis method works only for web.config files.</p>
<p>I know how to programatically encrypt the config file, but I don't think I can do that using WiX. Am I wrong? Any ideas?</p>
http://stackoverflow.com/questions/937908/how-to-detect-if-a-stored-procedure-already-exists/937944#9379440Answer by JasonS for How to detect if a stored procedure already existsJasonS2009-06-02T04:51:47Z2009-06-02T04:51:47Z<p>If you are dealing only with stored procedures, the easiest thing to do is to probably drop the proc, then recreate it. You can generate all of the code to do this using the Generate Scripts wizard in SQL Server. </p>
<pre><code>IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[YourSproc]') AND type in (N'P', N'PC'))
DROP PROCEDURE [dbo].[YourSproc]
CREATE PROCEDURE YourSproc...
</code></pre>
http://stackoverflow.com/questions/232500/how-to-configure-security-when-calling-wcf-service-from-net-2-0-client/936716#9367160Answer by JasonS for How to configure security when calling WCF Service from .Net 2.0 ClientJasonS2009-06-01T20:48:20Z2009-06-01T20:48:20Z<p>Here is what I ended up doing which seemed to be the simplest solution in our situation, which is pretty small scale with only a handful of web services exposed:</p>
<ol>
<li>Secured the transport with SSL</li>
<li>Clients first login to the web service by calling a Login method on the web service. If the login succeeds, it returns an encrypted FormsAuthenticationTicket to the client.</li>
<li>Clients must then supply the forms authentication ticket with each web service call. Each method checks if the ticket is valid and if so it does its work. If the ticket has expired or is invalid, clients must re-authenticate.</li>
</ol>
<p>Hope that helps someone...</p>
http://stackoverflow.com/questions/232500/how-to-configure-security-when-calling-wcf-service-from-net-2-0-client10How to configure security when calling WCF Service from .Net 2.0 ClientJasonS2008-10-24T04:48:05Z2009-06-01T20:48:20Z
<p>I have a WCF service up and running and am able to communicate between the service and a .Net 2.0 Client using basicHttpBinding. </p>
<p>I now need to lock down the WCF service so that it can only be called by authenticated clients.</p>
<p>I have control over the clients that will be calling my service. The clients are part of a product that will be installed in the wild and "phoning home" to push and pull data. The client app is written for .Net 2.0 framework and cannot be upgraded to 3.0 or 3.5 at this time. I cannot add windows user accounts to the client machines.</p>
<p>What are my options for securing the WCF Service and being able to authenticate from my .Net 2.0 clients? Also, data needs to be passed over https.</p>
<p>I've been searching the web, and feel like I'm on a wild goose chase.</p>
http://stackoverflow.com/questions/921688/asp-net-repeater-issue-question-about-best-practices/921765#9217652Answer by JasonS for ASP.NET repeater issue (+ question about best practices)JasonS2009-05-28T16:13:47Z2009-05-28T16:13:47Z<p>For displaying a list of things, Repeaters are typically faster than GridViews, DataLists, and their other counterparts. Repeaters are best suited for display, rather than adding and editing records, although you can manually wire up what is needed to use a Repeater for CRUD operations.</p>
<p>In your example, you need to bind the file path to the CommandArgument property of your link button. Then you should have access to the path using e.CommandArgument in the event handler.</p>
http://stackoverflow.com/questions/831395/how-do-i-compare-two-datasets-for-equality0How do I compare two datasets for equalityJasonS2009-05-06T19:47:09Z2009-05-06T20:35:07Z
<p>I have two datasets each with one data table pulled from different sources and I need to know if there are any differences in the data contained in the data tables. I'm trying to avoid looping and comparing each individual record or column, although there may be no other way. All I need to know is if there is a difference in the data, I do not need to know the details of any difference.</p>
<p>I have tried the below code, but it appears that dataset.Merge does not update rowstatus so dataset.HasChanges() always returns false. Any help is appreciated:</p>
<pre><code>var currentDataSet = GetSomeData();
var historicalDataSet = GetSomeHistoricalData();
historicalDataSet.Merge(currentDataSet);
if (historicalDataSet.HasChanges()) DoSomeStuff();
</code></pre>
http://stackoverflow.com/questions/822092/what-are-good-on-line-communities-for-finding-experienced-net-developers/822146#8221460Answer by JasonS for What are good on-line communities for finding experienced .NET developers?JasonS2009-05-04T21:28:56Z2009-05-04T21:28:56Z<p>Try user groups and other software development professional association groups in NYC. Usually, the people there care about their craft, and that is who you want working for you.</p>
http://stackoverflow.com/questions/33853/net-multilingual-cms/778400#7784001Answer by JasonS for .net multilingual cmsJasonS2009-04-22T17:46:56Z2009-04-22T17:46:56Z<p><a href="http://www.kentico.com/" rel="nofollow">Kentico</a> is pretty good too.</p>
http://stackoverflow.com/questions/714349/how-do-i-run-my-own-web-server-from-home/714565#7145650Answer by JasonS for How do I run my own web server from home?JasonS2009-04-03T15:56:07Z2009-04-03T15:56:07Z<p>Totally doable for the amount of traffic you have described. I can't imagine that this is close to the most cost effective option unless you are weighing against a dedicated server or colocation. Endless shared hosting options that would be a small fraction of the operating cost. Maybe even some dedicated virtual servers that would be cheaper too. That said:</p>
<ol>
<li>Upgrade your internet account to a business grade account with at least one static IP address.</li>
<li>You are going to need a Windows Server running the IIS. I'm not 100% certain, but pretty sure that you cannot host in IIS off of an XP machine and be compliant with MS licensing. SQLExpress should be fine as long as you can live with the data and other limitations.</li>
<li>You are going to need a firewall, something more than Zone Alarm, and shut down EVERYTHING you aren't using. This probably means leaving port 80 and 443(SSL) open and shutting down the rest. A hardware firewall would be best.</li>
<li>You have some firewall and router configuration to do route your static IP to your server.</li>
<li>Set up DNS for your website to point to your static IP.</li>
<li>At this point, get a "hello world" page out there to verify your server is accessible from the outside, set up your site, and your off and running.</li>
</ol>
<p>HTH.</p>
http://stackoverflow.com/questions/662760/whats-the-best-way-to-get-data-from-other-websites-programmatically-amazon-offe/662801#6628011Answer by JasonS for Whats the best way to get data from other websites programmatically? "amazon offers for example"JasonS2009-03-19T15:58:41Z2009-03-19T15:58:41Z<p>While not really intended for your scenario, have a look at <a href="http://watin.sourceforge.net/" rel="nofollow">Watin</a>. I'm assuming what you want to do is screen scrape. Watin is pretty easy to get going and will save you from writing much of the parsing code on your own. </p>
http://stackoverflow.com/questions/662567/what-is-the-best-free-or-cheap-asp-net-control-for-html-editing/662609#6626094Answer by JasonS for What is the best free or cheap ASP.NET control for HTML editing?JasonS2009-03-19T15:20:34Z2009-03-19T15:20:34Z<p><a href="http://www.fckeditor.net/" rel="nofollow">FCKEditor</a>, or <a href="http://tinymce.moxiecode.com/" rel="nofollow">TinyMCE</a>. Both are pretty good.</p>
http://stackoverflow.com/questions/273165/what-is-the-purpose-meaning-of-the-version-property-on-a-formsauthenticationticke0What is the purpose/meaning of the Version property on a FormsAuthenticationTicket?JasonS2008-11-07T18:50:05Z2009-03-07T05:47:04Z
<p>What is the purpose/meaning of the Version property on a FormsAuthenticationTicket?</p>
http://stackoverflow.com/questions/512503/explaining-net-or-java-to-a-client/512573#5125730Answer by JasonS for Explaining .NET or Java to a clientJasonS2009-02-04T18:09:25Z2009-02-04T18:09:25Z<p>This is a big rabbit hole, however...</p>
<p>If I ever have to argue for one technology over another, I do it around cost savings now and in the future. i.e. I can get it done faster by starting with an open source Java project now, but it will more expensive to upgrade and maintain later. </p>
<p>I don't think you can put this stuff in a magic grid because every project is different, every team is different, every company is different, and all of those factor into platform decisions and recommendations. Except for maybe the simplest cases like use Perl isn't the best choice to write an MS Office Add-on... which is useless information.</p>
http://stackoverflow.com/questions/470885/asp-net-web-app-distribution/470918#4709184Answer by JasonS for ASP.NET Web App DistributionJasonS2009-01-22T21:40:10Z2009-01-22T21:40:10Z<p>I am working on a project with a similar requirement now. We decided to use <a href="http://wix.sourceforge.net/" rel="nofollow">WiX</a> to create an installer that can be run on the server or machine where the site is installed. WiX is incredibly powerful, but takes a bit to get the hang of.</p>
<p>There are plenty of other open source, and paid installer technologies as well. <a href="http://stackoverflow.com/questions/458900/free-software-for-windows-installers-nsis-vs-wix">Here is a post</a> with some info on a few.</p>
http://stackoverflow.com/questions/417380/watin-or-selenium/417417#4174172Answer by JasonS for WatiN or Selenium?JasonS2009-01-06T17:23:09Z2009-01-06T17:23:09Z<p>I use Watin, but haven't used Selenium. I can say I got up and running quickly on Watin and have had few to no problems. I can't think of anything I have wanted to do that I couldn't figure out with it. HTH</p>
http://stackoverflow.com/questions/398004/do-you-write-your-unit-tests-first-after-a-bit-of-coding-or-not-at-all/398079#3980790Answer by JasonS for Do you write your unit tests first, after a bit of coding or not at all?JasonS2008-12-29T16:41:44Z2008-12-29T16:41:44Z<p>I'll offer that I'm fairly new to writing unit tests, and that I wish I had written them before I wrote my code. Or, at least had a better understanding of how to write more testable code as well as a better understanding of concepts like dependency injection which seems to be critical to writing testable code.</p>
http://stackoverflow.com/questions/395454/how-to-loop-thru-a-checkboxlist-and-to-find-whats-checked-and-not-checked/395473#3954733Answer by JasonS for How to loop thru a checkboxlist and to find what's checked and not checkedJasonS2008-12-27T21:58:49Z2008-12-27T21:58:49Z<p>Try something like this:</p>
<pre><code>foreach (ListItem listItem in clbIncludes.Items)
{
if listItem.Selected { //do some work }
else { //do something else }
}
</code></pre>
http://stackoverflow.com/questions/387594/c-open-source-project-namespace/387648#3876480Answer by JasonS for C# Open Source Project NamespaceJasonS2008-12-22T22:48:16Z2008-12-22T22:48:16Z<p>I would suggest getting a MyOrganization and using it. If you ever take money for the work, you are going to need an entity, and it could protect you from liability. It is fairly easy to set something up.</p>
<p>Or just use a MyOrganization name and create the entity later, but you run the risk of legal name conflicts, etc if you don't set it up first.</p>
http://stackoverflow.com/questions/382997/how-do-you-handle-scheduled-tasks-for-your-websites-running-on-iis/383037#3830371Answer by JasonS for How do you handle scheduled tasks for your websites running on IIS?JasonS2008-12-20T06:49:34Z2008-12-20T06:49:34Z<p>I would go with a Windows Service right out of the gates. This is going to be the most extensible method for your requirements, creating the service isn't going to add much to your development time, and it will probably save you time not too far down the road.</p>
http://stackoverflow.com/questions/372797/unit-integration-tests-how-granular-should-they-be2Unit/Integration Tests, how granular should they be?JasonS2008-12-16T21:28:31Z2008-12-19T09:49:17Z
<p>I am testing the UI of my ASP.Net Web Forms app using NUnit/Watin. I understand the high level concepts around TDD, Unit Testing, integration testing etc, but have not had much of a chance to put them to use until now. </p>
<p>So, when I am testing the validation logic on a data entry form, should I be writing one test that triggers each of my validation errors (i.e. Field x is required), or a separate test for each of the validation errors that should be thrown by the form. Is this simply a style issue, or are there valid reasons for writing several tests instead of one that hits on all possible combos of my validation logic?</p>
<p>Psuedo code:</p>
<pre><code> [Test]
public void Validation()
{
//Do some stuff to test that username is required.
Assert.AreEqual(true, ie.ContainsText("Username is required.");
//Do some stuff to test that passwword is required.
Assert.AreEqual(true, ie.ContainsText("Password is required.");
}
</code></pre>
<p>vs.</p>
<pre><code>[Test]
public void ValidateUserName()
{
//Do some stuff to test that username is required.
Assert.AreEqual(true, ie.ContainsText("Username is required.");
}
[Test]
public void ValidatePassword()
{
//Do some stuff to test that passwword is required.
Assert.AreEqual(true, ie.ContainsText("Password is required.");
}
</code></pre>
http://stackoverflow.com/questions/373701/how-many-companies-would-agree-to-this/373759#3737592Answer by JasonS for How many companies would agree to this?JasonS2008-12-17T05:59:53Z2008-12-17T05:59:53Z<p>I mean no disrespect to your question, but in a nutshell, it just isn't that easy.</p>
<p>I admire your entreprenurial spirit, however you would be better off learning an industry, or subject matter inside and out by working in it for a few years... at least - maybe as a consultant. You will identify the inefficiencies you are seeking, and learn how applying software may create change. And, you should get paid for this.</p>
<p>Informational interviews aren't going to get you very far without in depth knowledge of the industry in which your subjects are working. If you have no foundation of knowledge to build upon, you'll have a hard time getting more than skin deep and a hard time getting people who are worth spending time with to take you seriously. Maybe this isn't true of all industries/business types... but those that it is true of represent your biggest opportunity.</p>
<p>Good luck.</p>
http://stackoverflow.com/questions/1625976/securing-temporary-passwords-sent-through-e-mail-to-usersComment by JasonS on Securing temporary passwords sent through e-mail to users?JasonS2009-10-26T17:40:43Z2009-10-26T17:40:43ZIs it the security of the e-mail you are concerned about?http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118940#118940Comment by JasonS on What is the strangest/weirdest program you've ever made?JasonS2009-09-09T21:28:30Z2009-09-09T21:28:30ZThese were "touchless" hand washing units mounted in the right places in the hospital - not in bathrooms and such where you have to touch the door handle to get out. They had all the literature and test results on why it was more effective than gels. But, I'm no expert on hand washing, I just write software!http://stackoverflow.com/questions/1138678/sql-server-2005-pass-in-name-of-table-to-be-queried-via-parameterComment by JasonS on SQL Server 2005 - Pass In Name of Table to be Queried via ParameterJasonS2009-07-16T16:23:59Z2009-07-16T16:23:59ZThis might be a situation where sql in a code file makes sense. I think you are either going to have that, or what @BBlake said which is essentially the same thing, just that the code gets stored in SQL Server.http://stackoverflow.com/questions/1121573/anyone-know-of-an-asp-net-c-cms-type-system-with-a-forms-module/1121609#1121609Comment by JasonS on Anyone know of an Asp.Net C# CMS type system with a Forms ModuleJasonS2009-07-13T19:42:55Z2009-07-13T19:42:55ZYou'll like it more than DNN. Its good.http://stackoverflow.com/questions/1014672/how-to-place-text-centered-over-an-imageComment by JasonS on How to place text centered over an image?JasonS2009-06-18T19:21:03Z2009-06-18T19:21:03ZIt would help if you provided your css and html.http://stackoverflow.com/questions/1002159/weirdest-error-ever-asp-net-and-firefoxComment by JasonS on WEIRDEST ERROR EVER: ASP.NET and Firefox??JasonS2009-06-16T15:17:45Z2009-06-16T15:17:45ZWhat kind of error message are you getting?http://stackoverflow.com/questions/921688/asp-net-repeater-issue-question-about-best-practices/921759#921759Comment by JasonS on ASP.NET repeater issue (+ question about best practices)JasonS2009-05-28T16:16:10Z2009-05-28T16:16:10Zditto that... the control over the generated HTML is a huge benefit of the Repeater.http://stackoverflow.com/questions/919117/how-does-code-look-when-you-dont-use-exceptions-to-control-flow/919170#919170Comment by JasonS on How does code look when you don't use exceptions to control flow?JasonS2009-05-28T04:32:39Z2009-05-28T04:32:39ZNo, not an exceptional case. You should handle something like a username already in use as part of your business logic using something like a BrokenRules collection.http://stackoverflow.com/questions/158479/programatically-parse-a-pdf-file/315602#315602Comment by JasonS on Programatically Parse a PDF FileJasonS2009-05-12T20:24:52Z2009-05-12T20:24:52Zthanks! Saved me a headache!http://stackoverflow.com/questions/841065/how-to-parse-an-xhtml-file-that-is-not-100-valid/841173#841173Comment by JasonS on How to parse an XHTML file that is not 100% valid?JasonS2009-05-08T18:35:40Z2009-05-08T18:35:40Z+1 for the Agility Pack. Saved me recently.http://stackoverflow.com/questions/831395/how-do-i-compare-two-datasets-for-equality/831606#831606Comment by JasonS on How do I compare two datasets for equalityJasonS2009-05-06T20:52:47Z2009-05-06T20:52:47ZYes, that is the ticket. In this case, schema and order of records are guaranteed, so this works perfectly. Should have thought of it myself! Thanks.http://stackoverflow.com/questions/800967/enforcing-source-control/800990#800990Comment by JasonS on Enforcing source controlJasonS2009-04-29T05:57:21Z2009-04-29T05:57:21Z+1 I mean seriously... what developer wouldn't be on board with source control? I wouldn't even consider working somewhere that doesn't have source control.http://stackoverflow.com/questions/796025/freelance-web-development-who-pays-for-hosting/796032#796032Comment by JasonS on Freelance web development: who pays for hosting?JasonS2009-04-28T03:14:59Z2009-04-28T03:14:59ZIt depends on what the meaning of the word 'is' is. If the--if he--if 'is' means is and never has been, that is not--that is one thing.http://stackoverflow.com/questions/727361/sql-server-2008-web-edition/727419#727419Comment by JasonS on SQL Server 2008 Web EditionJasonS2009-04-07T20:26:04Z2009-04-07T20:26:04ZI think you are right @Joel.http://stackoverflow.com/questions/395779/what-is-the-most-efficient-way-to-perform-the-reverse-of-server-mappath-in-an-asp/395798#395798Comment by JasonS on What is the most efficient way to perform the reverse of Server.MapPath in an ASP.Net ApplicationJasonS2008-12-28T07:34:46Z2008-12-28T07:34:46ZIf performance is your concern, you could have a service or something monitor the directories out of band, translate the paths to relative urls, store them somewhere, and use that data store to get the url to pass to the view. May not be worth the trouble depending on how many files you have.