User Riri - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T16:21:57Z http://stackoverflow.com/feeds/user/298 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1845998/sum-diff-problem-bug-in-xslt-1-0 0 Sum diff problem/bug in XSLT 1.0 Riri 2009-12-04T10:02:05Z 2009-12-04T12:05:33Z <p>I have this XML data and try and make a sum of it using the XSLT snippet below. </p> <p><strong>Xml</strong></p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;values&gt; &lt;value&gt;159.14&lt;/value&gt; &lt;value&gt;-2572.50&lt;/value&gt; &lt;value&gt;-2572.50&lt;/value&gt; &lt;value&gt;2572.50&lt;/value&gt; &lt;value&gt;2572.50&lt;/value&gt; &lt;value&gt;-159.14&lt;/value&gt; &lt;/values&gt; </code></pre> <p><strong>Xslt</strong></p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:template match="/"&gt; &lt;xsl:value-of select="sum(values/value)"/&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>In my world the value should then be <strong>0</strong> but it ends up being <strong>-0.0000000000005684341886080801</strong></p> <p>Run it in Visual Studio and see for yourself. <strong><em>Why?</em></strong> is this happening?</p> http://stackoverflow.com/questions/1815105/simple-screen-scraping-and-analyze-in-net 1 Simple screen scraping and analyze in .NET Riri 2009-11-29T09:39:00Z 2009-11-29T10:01:55Z <p>I'm building a small specialized search engine for prise info. The engine will only collect specific segments of data on each site. My plan is to split the process into two steps.</p> <ol> <li><p>Simple screen scraping based on a URL that points to the page where the segment I need exists. <em>Is the easiest way to do this just to use a WebClient object and get the full HTML?</em></p></li> <li><p>Once the HTML is pulled and saved analyse it via some script and pull out just the segment and values I need (for example the price value of a product). My problem is that this script somehow has to be unique for each site I pull, it has to be able to handle really ugly HTML (so I don't think XSLT will do ...) and I need to be able to change it on the fly as the target sites updates and changes. I will finally take the specific values and write these to a database to make them searchable</p></li> </ol> <p>Could you please give me some hints on how to architect the best way? Would you do different then described above?</p> http://stackoverflow.com/questions/599837/how-to-generate-and-validate-a-software-license-key 9 How to generate and validate a software license key? Riri 2009-03-01T13:41:30Z 2009-11-13T20:22:21Z <p>I'm currently involved in developing a product (developed in C#) that'll be available for downloading and installing for free but in a very limited version. To get access to all the features the user has to pay a license fee and receive a key. That key will then be entered into the application to "unlock" the full version.</p> <p>As using a license key like that is kind of usual I'm wondering <strong><em>how that's usually solved?</em></strong> How can I <strong><em>generate the key</em></strong> and how <strong><em>can it be validated by the application?</em></strong> How can I also <strong><em>avoid having a key getting published on the Internet and used by others</em></strong> that haven't payed the license (a key that basically isn't "theirs"). I guess I should also tie the key to the version of application somehow so it'll be possible to charge for new keys in feature versions.</p> <p>Anything else I should think about in this scenario?</p> http://stackoverflow.com/questions/1679072/decimal-separator-in-sql-server-2008 1 Decimal separator in Sql Server 2008 Riri 2009-11-05T08:17:35Z 2009-11-05T08:55:20Z <p>What do I need to change in Sql Server to be able to store values like "<strong><em>2,1</em></strong>" in a decimal field? Right now I have to have dots like "<strong><em>2.1</em></strong>".</p> <p>I have Finnish_Swedish_CI_AS collation on the database but that doesn't seem to be it ... I also fiddled around with the regions settings on the server but with no success. I know I've managed to change this before.</p> http://stackoverflow.com/questions/1443486/using-ssis-in-a-cluster-with-biztalk-bam 0 Using SSIS in a cluster with BizTalk BAM Riri 2009-09-18T09:36:54Z 2009-10-24T18:49:16Z <p>We set up SQL server in a cluster. We then used one of the BizTalk servers and installed SSIS on it. We then configured BAM. Everything looked fine until we needed to run some of the SSIS jobs to archive stuff. They don't seem to have been created ...</p> <p>We then tried to change the value in the MsDtsSrvr.ini.xml file and restart the SSIS on the BizTalk server and tested again but still no luck. </p> <p><em>What do we need to do and where do we need to change the value in the MsDtsSrvr.ini.xml file?</em></p> <p>In <a href="http://seroter.wordpress.com/2007/04/30/production-ready-bam-security-and-deployment/" rel="nofollow">this post</a> Richard S. discusses problem but I can still can't seem to get it to work ...</p> http://stackoverflow.com/questions/1494352/identifiy-iis-7-using-nsis 0 Identifiy IIS 7 using NSIS Riri 2009-09-29T19:03:33Z 2009-10-20T22:01:45Z <p>Is there a way to identify the current version of IIS / using <a href="http://nsis.sourceforge.net/Main%5FPage" rel="nofollow">NSIS</a>?</p> <p>I need a way to add some special behaviour to my installer in case of IIS 7.</p> http://stackoverflow.com/questions/1581394/split-value-in-24-randomly-sized-parts-using-c 5 Split value in 24 randomly sized parts using C# Riri 2009-10-17T04:20:44Z 2009-10-19T23:55:26Z <p>I have a value, say 20010. I want to randomly divide this value over 24 hours. So basically split the value into a 24 slot big array where all slots are randomly big.</p> <p>What could be a good way solving this using C#?</p> http://stackoverflow.com/questions/1555761/biztalk-2009-esb-confusion/1581416#1581416 2 Answer by Riri for BizTalk 2009 ESB Confusion Riri 2009-10-17T04:37:48Z 2009-10-17T04:37:48Z <p><strong>On-ramps</strong></p> <p>The on-ramps <em>are</em> web service based receive port but they are a bit different as they accepts generic XML messages. The messages will however have a very special SOAP header (a "envelope" if you will) with all the necessary properties to make for example message itinerary possible, You'll find all the possible header by having look in "EsbEnvGeneric.xsd"</p> <p><strong>itineraries</strong></p> <p>I like NealWalter reply on this on. I however just like to add the message itinerary approach can potential save <strong><em>a lot</em></strong> of time and development effort. It can make an organizations more agile and ease change in their processes. If we don't have to develop and deploy a whole new orchestration but only change some configuration and use our existing bits that can of course save a lot of time. And this is the big value in a ESB and message itinerary as I see it.</p> <p><strong>Message Box</strong></p> <p>Messages in BizTalk always have to go via the message box. In the next version MS have been hinting about a low latency scenario in BizTalk - maybe then we can gain a bit more control, But more but for now messages get persisted many times on their way through BizTalk and there is nothing to about that.</p> http://stackoverflow.com/questions/1472518/demo-email-sending-and-receiving-locally-using-a-mail-server 0 Demo email sending and receiving locally using a mail server Riri 2009-09-24T15:42:41Z 2009-10-11T20:56:19Z <p>I have a upcoming demo of a product that (amongst other things) sends email alerts. I don't know if I'll have an Internet connection for this demo. I also need to be able to fire up something like Outlook Express and view these alerts. </p> <p>So I have come to the conclusion that I need to install some sort of small mail server to send the mail and that I can then connect a mail client to.</p> <p>Are there any tiny mail servers out there that will install on a windows 2003 server? I really need to smallest and thinnest possible as I got 100 other stuff running on the same development machine and I don't want to slow it down ever further ... </p> http://stackoverflow.com/questions/1452947/software-license-texts 1 Software license texts Riri 2009-09-21T04:55:55Z 2009-09-21T06:43:07Z <p>In the installer for a product I need some sort of license text that basically says "don't copy" - but does this in a 3000 character long legal text ... Where can I find good examples of these to reuse? </p> <p>I mean all small tools/products out there that are for sales and have these text can't have hired a lawyer - right? </p> http://stackoverflow.com/questions/1427068/find-what-asp-net-mvc-controller-in-master-view 5 Find what ASP.NET MVC controller in master view Riri 2009-09-15T13:06:50Z 2009-09-15T14:06:54Z <p>I have a shared master view for all my other views. It's in this master view I show the menu. Now I need to find out in what controller I'm currently in so I can disable/enable certain menu options. </p> <p>For example it should be possible to press the "foo" link if I'm current in the "foo" controller.</p> <p>How Can I do this?</p> http://stackoverflow.com/questions/1389930/tools-and-techniques-to-optimize-a-linq-to-sql-query 3 Tools and techniques to optimize a LINQ to SQL query Riri 2009-09-07T15:43:17Z 2009-09-08T14:39:38Z <p>I have a couple of LINQ to SQL queries that I feel take a lot of time. What tool and techniques can I use to first find out:</p> <ol> <li><em>How long they take</em> and if <em>there is room for improvement</em>?</li> <li>Find out <em>what I can change</em> and easily <em>test if those changes are effective</em>?</li> </ol> <p>Both tools, techniques and reading resources would be appreciated (ergo up-voted ;))</p> http://stackoverflow.com/questions/591965/jquery-blockui-vs-jqmodal 5 jQuery BlockUI vs. jqModal Riri 2009-02-26T19:05:16Z 2009-08-23T15:36:01Z <p>I need a modal windows that tells the user to wait until I've finished some work on the server. Looks like both <a href="http://malsup.com/jquery/block/" rel="nofollow">BlockUI</a> and <a href="http://dev.iceburg.net/jquery/jqModal/" rel="nofollow">jqModal</a> can do this. </p> <p>Do you have any experiences with any of them? Pros and cons? I'm using ASP.NET MVC. </p> http://stackoverflow.com/questions/101394/is-there-any-free-tool-for-monitoring-biztalk-applications-remotely/1257098#1257098 1 Answer by Riri for Is there any free tool for monitoring BizTalk applications remotely? Riri 2009-08-10T20:42:06Z 2009-08-11T13:10:57Z <p><strong>BizMon</strong></p> <p>There is an new BizTalk monitoring tool called BizMon. You can check that out <a href="http://bizmontool.com/" rel="nofollow">here</a>. I think it does what you like.</p> <p>We use this for our three mid-sized BizTalk environments (~50 BizTalk application in each) and it works good for us. But you can <a href="http://bizmontool.com/buy" rel="nofollow">try it</a> for yourself. The tool is <em>free</em> up to 5 applications (if you're however monitoring more applications than that you'll need a license). </p> <p><strong>FRENDS Helium</strong></p> <p>Another tool that might be worth a test is <a href="http://www.frends.com/product/monitoring-technologies/" rel="nofollow">FRENDS Helium</a>. I haven't tried this myself but they have a beta one can request and try out. Don't know anything about pricing or things like that though.</p> http://stackoverflow.com/questions/1231551/files-in-a-windows-based-web-app 0 Files in a windows based web app Riri 2009-08-05T06:42:46Z 2009-08-06T16:57:26Z <p>I have a web application running on IIS. Instead of using a database it reads and writes to a couple of XML files. I currently store these files in the <em>Application Data</em> folder in windows. This folder (<em>\Documents and Settings\All Users\Application Data</em> in win 2003) however requires at least "Power Users" privileges to write! </p> <p>Reads are OK and are granted to everyone but writes are not allowed as long as your not in the one of the more privileges groups on the system. <strong><em>Why is this so?</em></strong> <em>Is there a better place for a application to write to</em> and one that does require me to add the user of the application pool to a more privileged group?</p> <p>My second question is that if I have file that just needs reading. Can I then read this directly for the folder where I have my web application deployed (say a folder in "Program Files") or should I at all times use the Application Data folder? </p> <p>The idea here is that this files sometimes need manual change and using the folder where the web application runs from would basically make more since to normal users I think (especially on win 2008 where the Application Data is hard to find).</p> http://stackoverflow.com/questions/1211265/jquery-function-attr-doesnt-always-update-img-src-attribute/1211269#1211269 0 Answer by Riri for jQuery function attr() doesn't always update img src attribute Riri 2009-07-31T08:12:44Z 2009-07-31T08:12:44Z <p>Check out the <a href="http://malsup.com/jquery/block/" rel="nofollow">BlockUI</a> plug-in. Sounds like it could be what you're looking for.</p> <p>You'll find a nice demo <a href="http://malsup.com/jquery/block/#page" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1193894/ordered-delivery-send-port-leaves-a-running-instance-in-biztalk 0 Ordered delivery send port leaves a running instance in BizTalk Riri 2009-07-28T12:51:44Z 2009-07-29T13:21:33Z <p>I have a MSMQ send port in BizTalk that is configured to send messages using ordered delivery. When the port has sent a batch of messages it leaves an instance of the port as an active running instance. </p> <p>I still receive the correct files in the correct order but I have to manually terminate the used port instance. If I send new files it looks like the already running instance (that was left from before) is used and I never end up with more than one port instance at a time for the send port.</p> <p>This will however be a problem from a maintenance point of view and I don't understand why this is happening. Ideas?</p> <p>I'm using BizTalk 2006 R2.</p> http://stackoverflow.com/questions/1193894/ordered-delivery-send-port-leaves-a-running-instance-in-biztalk/1198451#1198451 0 Answer by Riri for Ordered delivery send port leaves a running instance in BizTalk Riri 2009-07-29T06:57:37Z 2009-07-29T06:57:37Z <p>Turns out this is part of the implementation of Ordered Delivery. The instance will stay active until terminated.</p> http://stackoverflow.com/questions/1119152/create-nsis-package-as-part-of-build 1 Create NSIS package as part of build Riri 2009-07-13T12:26:23Z 2009-07-29T06:56:27Z <p>Is there a way to compile a NSIS package as part of a build? I use MSBuild.</p> <p><strong>Update:</strong> There is a command tool called makensis as part of the NSIS download. I just executed that from my build script and handed it my .nsi file.</p> <p><strong>Example:</strong></p> <pre><code>&lt;Target Name="MakeDistributable"&gt; &lt;Exec command="..\Tools\NSIS\makensis.exe MyDistScript.nsi" WorkingDirectory="..\Installation" /&gt; &lt;/Target&gt; </code></pre> http://stackoverflow.com/questions/1119152/create-nsis-package-as-part-of-build/1198440#1198440 0 Answer by Riri for Create NSIS package as part of build Riri 2009-07-29T06:56:27Z 2009-07-29T06:56:27Z <p>This is what I used</p> <pre><code>&lt;Target Name="MakeDistributable"&gt; &lt;Exec command="..\Tools\NSIS\makensis.exe MyDistScript.nsi" WorkingDirectory="..\Installation" /&gt; &lt;/Target&gt; </code></pre> http://stackoverflow.com/questions/1133304/script-a-new-web-application-in-iis-7 1 Script a new web application in IIS 7 Riri 2009-07-15T19:03:56Z 2009-07-27T13:57:48Z <p>I have a script using <a href="http://msdn.microsoft.com/en-us/library/ms524586.aspx" rel="nofollow">AppCreate</a> to create a new application (virtual directory) in IIS 6. To get the script to work in IIS 7 I have to enable IIS 6 compatibility. What is the "right" way to script this in IIS 7 without having to enable a lot of different components that differ from the standard installation?</p> http://stackoverflow.com/questions/1133304/script-a-new-web-application-in-iis-7/1188296#1188296 0 Answer by Riri for Script a new web application in IIS 7 Riri 2009-07-27T13:57:48Z 2009-07-27T13:57:48Z <p>Seems like <a href="http://learn.iis.net/page.aspx/114/getting-started-with-appcmdexe/" rel="nofollow">AppCmd</a> is what I'm looking for ...</p> http://stackoverflow.com/questions/1121378/user-right-for-application-data-special-folder-in-asp-net 0 User right for application data special folder in ASP.NET Riri 2009-07-13T18:52:46Z 2009-07-13T19:11:50Z <p>I have a ASP.NET MVC application that runs in both IIS 6 and 7. The application requires special right and needs to run in a application pool with a special users that are part of of some specific groups. The application also stores a a lot of settings in a couple of XML files. These files are stored under "Application Data" special folder as they are read by several different components. </p> <p>I've found that I sometimes need to add the user to the local Administrators group of the machine to get right to write to these XML files. Is that the case or I'm I missing something else? What rights are needed to be able to write to Application Data folder?</p> http://stackoverflow.com/questions/469397/installing-a-win32-service-using-msbuild-and-microsoft-sdc-tasks 1 Installing a win32 service using MSBuild and Microsoft.Sdc.Tasks Riri 2009-01-22T14:49:14Z 2009-07-09T15:32:22Z <p>I'm trying to install windows service using the Microsoft.Sdc.Tasks library. </p> <pre><code>&lt;ControlService Action="Install" ServiceName="Service1" User="XXX Password="XXX" ServiceExePath="$(DeployFolder)\XXX.exe"/&gt; </code></pre> <p><strong><em>But I keep getting prompted for the user and password!</em></strong> This will not work as I'd like to have it as an automated build on the build server. I mean, the user and password that I want to run the service under are in the actual target. How do I get it to install the service using the configured user and password and not prompt for it?</p> http://stackoverflow.com/questions/1102976/how-to-change-the-working-directory-while-debugging-in-visual-studio 0 How to change the working directory while debugging in Visual Studio ? Riri 2009-07-09T10:05:12Z 2009-07-09T10:23:40Z <p>I have a windows form project in Visual Studio that reads configuration files from an other project in the same solution. Once deployed this application will run from the root folder for the solution and the files will then be read from something like "/Project1/connection.config".</p> <p>When I however debug the forms application and get the executing assembly path it will run from "bin/Debug" or "bin/Release" ergo the path to the configuration files is different. </p> <p>Is there a way to tell Visual Studio either debug the application from a different path or just copy the application once compiled and debug/run it from the same path as it will be run from once it is deployed?</p> http://stackoverflow.com/questions/820811/shared-configuration-files-in-net 2 Shared configuration files in .NET Riri 2009-05-04T16:30:55Z 2009-06-25T23:06:41Z <p>I have a solution that includes both a web and a Windows NT service application. These are of course two different projects but within the same solution. They do however share a lot of the same configuration. </p> <p>Currently I have the same values in both the web.config and the app.config file. This is starting to get messy and I'd like to have a shared configuration files for both of the applications within the solution. </p> <ul> <li>Is there a problem for the web application if the configuration isn't at the root level of the web application? Are there limitations here?</li> <li>Will I loose caching and automatic recycling of the web application if I don't use web.config</li> <li>Is it generally a bad idea to shared the configuration as described? </li> </ul> http://stackoverflow.com/questions/977470/net-template-files 1 .NET template files Riri 2009-06-10T18:47:23Z 2009-06-10T19:18:47Z <p>I have a application that generates a couple of different mails. These mails are currently build up using a string builder that generates a HTML based string that is the mail content.</p> <p>This approach is getting messy. The code is objects mixed with HTML, etc, etc. <em>What I'd like is to have a template similar to the one used in for example MVC and then use the output of this template to add to the mail</em>.</p> <p>Can this be done using for example T4 add how wound that work or should I use another approach for this? </p> <p>The templates don't have to be editable at runtime even if that would be nice.</p> http://stackoverflow.com/questions/968666/full-trust-in-asp-net-web-application-is-it-ok 1 Full trust in ASP.NET web application - is it OK? Riri 2009-06-09T07:33:15Z 2009-06-09T08:13:23Z <p>Is there really a problem running a application under full trust as long as it is possible to control the configuration of the machine?</p> http://stackoverflow.com/questions/946646/easy-database-userface 1 Easy database userface Riri 2009-06-03T19:24:27Z 2009-06-07T18:09:13Z <p>I have a simple SQL Server database that we use for conversions. Basically a table with two mor more columns where one value maps to another. We then have processes that use these tables to find matching values and select other values on that row.</p> <p>These values change a lot and we now need a interface for the business users to update the values themselves. I <strong><em>don't</em></strong> want to spend time building something new, I rather use and interface that the uses are used to - for example Excel or something in SharePoint.</p> <p>Have you solved something similar and what your idea for a easy win in the scenario?</p> http://stackoverflow.com/questions/905413/importing-parts-from-x-number-of-folders-using-mef 2 Importing parts from X number of folders using MEF Riri 2009-05-25T05:12:30Z 2009-05-25T17:31:13Z <p>I have a number of folders that all contains MEF parts that should be imported. Is the easiest way to find all the parts to iterate over the folders and create a MEF Aggregating Catalog object?</p> <p>I need to place the parts in different places in the application based on the folder it was read from. So parts from folder "Test1Parts" should be places under the "Test1" section of the application. Do I have the folder name available somehow or will they all look the same once imported via the Aggregating Catalog?</p> <p>I have generic parts so I can't really put a attribute on each of them an recompile just to have them show up on a different section in the application. </p> <p>Another way (if it can't be controlled via the folder structure) is f course to use a configuration file that I read before importing telling what part should go where.</p> <p>What would be the best approach?</p> http://stackoverflow.com/questions/1845998/sum-diff-problem-bug-in-xslt-1-0/1846014#1846014 Comment by Riri on Sum diff problem/bug in XSLT 1.0 Riri 2009-12-04T10:10:23Z 2009-12-04T10:10:23Z Sure that solves it - but why is it happening? http://stackoverflow.com/questions/1815105/simple-screen-scraping-and-analyze-in-net/1815114#1815114 Comment by Riri on Simple screen scraping and analyze in .NET Riri 2009-11-30T04:56:13Z 2009-11-30T04:56:13Z We're talking very litte data. I've seen the HtmlAgilityPack, it's great! Thnaks. http://stackoverflow.com/questions/1815105/simple-screen-scraping-and-analyze-in-net/1815125#1815125 Comment by Riri on Simple screen scraping and analyze in .NET Riri 2009-11-30T04:55:00Z 2009-11-30T04:55:00Z Like the pipeline idea! Thanks http://stackoverflow.com/questions/1679072/decimal-separator-in-sql-server-2008/1679105#1679105 Comment by Riri on Decimal separator in Sql Server 2008 Riri 2009-11-05T08:52:01Z 2009-11-05T08:52:01Z Ok. Found it on the server instance under the advanced tab. Thanks. http://stackoverflow.com/questions/1679072/decimal-separator-in-sql-server-2008/1679107#1679107 Comment by Riri on Decimal separator in Sql Server 2008 Riri 2009-11-05T08:48:01Z 2009-11-05T08:48:01Z I need to set up a test database with existing data so this will not work for me http://stackoverflow.com/questions/1443486/using-ssis-in-a-cluster-with-biztalk-bam Comment by Riri on Using SSIS in a cluster with BizTalk BAM Riri 2009-10-26T13:24:15Z 2009-10-26T13:24:15Z Tuned out to be a stupid mistake with the hosts file ... 1+ for Shiraz as it might help someone else. http://stackoverflow.com/questions/1074767/xsl-copy-elements-but-remove-unused-namespaces/1075310#1075310 Comment by Riri on XSL - copy elements but remove unused namespace(s) Riri 2009-10-07T13:08:32Z 2009-10-07T13:08:32Z I want XSLT 2.0! http://stackoverflow.com/questions/1452947/software-license-texts/1452951#1452951 Comment by Riri on Software license texts Riri 2009-09-22T08:06:39Z 2009-09-22T08:06:39Z It's not really a &quot;concern&quot;. I just like the thing to look a bit more professional ;) http://stackoverflow.com/questions/1452947/software-license-texts Comment by Riri on Software license texts Riri 2009-09-22T08:05:48Z 2009-09-22T08:05:48Z Yep. That correct http://stackoverflow.com/questions/1401249/alternative-to-running-db-lookup-functoid-through-a-loop Comment by Riri on Alternative to running DB Lookup functoid through a loop? Riri 2009-09-11T08:09:43Z 2009-09-11T08:09:43Z Can't you just do that lookup in the store procedure you use to write the value with? Just hand the procedure the text value and let the SP do the lookup of the corresponding TypeId ...? What am I missing? http://stackoverflow.com/questions/1389930/tools-and-techniques-to-optimize-a-linq-to-sql-query/1390046#1390046 Comment by Riri on Tools and techniques to optimize a LINQ to SQL query Riri 2009-09-07T16:18:08Z 2009-09-07T16:18:08Z Very good! Thanks! Lots of new ones in there for me. http://stackoverflow.com/questions/101394/is-there-any-free-tool-for-monitoring-biztalk-applications-remotely/1259133#1259133 Comment by Riri on Is there any free tool for monitoring BizTalk applications remotely? Riri 2009-08-11T13:15:50Z 2009-08-11T13:15:50Z The reason we went to third party solutions was to be able to delegate the monitoring to support personnel that don't have 100% of their time dedicated to BizTalk and don't have time or opportunity to learn BizTalk. We wanted the help desk to receive reports and alerts in case of errors and don't have to &quot;pull&quot; for them. http://stackoverflow.com/questions/1231551/files-in-a-windows-based-web-app/1240175#1240175 Comment by Riri on Files in a windows based web app Riri 2009-08-07T08:51:28Z 2009-08-07T08:51:28Z I'll give that a try. Haven't used the APP_Data as I also need a NT service to access the same files. But we'll e how it works. Thanks for the idea. http://stackoverflow.com/questions/1211265/jquery-function-attr-doesnt-always-update-img-src-attribute/1211269#1211269 Comment by Riri on jQuery function attr() doesn't always update img src attribute Riri 2009-07-31T12:40:12Z 2009-07-31T12:40:12Z OK. I see. You could also use it to just block an element but it might not be what you're looking for either. <a href="http://malsup.com/jquery/block/#element" rel="nofollow">malsup.com/jquery/block/#element</a> http://stackoverflow.com/questions/620265/can-i-set-up-html-email-templates-in-c-on-asp-net/689686#689686 Comment by Riri on Can I set up HTML/Email Templates in C# on ASP.NET? Riri 2009-07-20T17:13:40Z 2009-07-20T17:13:40Z But how did you handle collections?