User David Thibault - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T06:40:27Zhttp://stackoverflow.com/feeds/user/5903http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1801134/upnp-library-for-net2UPnP Library for .NetDavid Thibault2009-11-26T01:45:48Z2009-12-08T21:54:08Z
<p>I'm trying to play around with UPnP. Specifically, I'm trying to browse the content library of a <a href="http://ps3mediaserver.blogspot.com/" rel="nofollow">PS3 Media Server</a>.</p>
<p>I tried <a href="http://msdn.microsoft.com/en-us/library/aa382303%28VS.85%29.aspx" rel="nofollow">upnp.dll</a> (a COM library that ships with windows) and found it easy to use. I can discover devices and look at their services pretty easily, however it throws an exception when trying to access the services of the media server (other devices, like my router and windows media player, work fine). A bit of searching around the net revealed that upnp.dll is not well implemented and other people have the same problem and found no solutions.</p>
<p>So I've looked for an alternative and found <a href="http://github.com/lunchtimemama/Mono.Upnp/tree" rel="nofollow">Mono.Upnp</a>. It looks promising but I just can't get it to work, at all.</p>
<p>I saw mentions of Intel's UPnP SDK but this seems to be deprecated and I can't find a downloadable package.</p>
<p>I'm at a loss. Is there no alternative to upnp.dll ?</p>
http://stackoverflow.com/questions/1801134/upnp-library-for-net/1817926#18179262Answer by David Thibault for UPnP Library for .NetDavid Thibault2009-11-30T05:00:13Z2009-11-30T05:00:13Z<p>I decided to bite the bullet and just roll my own. It's not that hard. Simple udp + xml + soap. </p>
<p>This link was very helpful to me:<br>
<a href="http://www.upnp.org/download/UPnP%5FDevice%5FArchitecture%5FGeneric%5F20000710.ppt" rel="nofollow">http://www.upnp.org/download/UPnP_Device_Architecture_Generic_20000710.ppt</a></p>
<p>For the specifics of a media server's content directory, see:
<a href="http://www.upnp.org/standardizeddcps/documents/ContentDirectory1.0.pdf" rel="nofollow">http://www.upnp.org/standardizeddcps/documents/ContentDirectory1.0.pdf</a></p>
<p>The <a href="http://github.com/lunchtimemama/Mono.Upnp/tree" rel="nofollow">Mono.Upnp</a> source was also helpful.</p>
<p>I have no plans to make this open source as it won't be a complete implementation (I'm doing the strict minimum for my project).</p>
http://stackoverflow.com/questions/1782089/linq-projection/1787065#17870650Answer by David Thibault for Linq ProjectionDavid Thibault2009-11-24T00:31:15Z2009-11-24T00:31:15Z<p>I don't think you can do it in Linq. You will have to do something like:</p>
<pre><code>var filtered = new List<Customer>();
foreach (var c in customers)
{
var customer = new Customer();
customer.Orders.AddRange(c.Orders.Where(o => o.OrderDate > queryDate));
filtered.Add(customer);
}
</code></pre>
http://stackoverflow.com/questions/1786949/hack-proof-html-coding-with-ajax/1787037#17870371Answer by David Thibault for hack proof html coding with ajaxDavid Thibault2009-11-24T00:22:16Z2009-11-24T00:22:16Z<p>You basically need something like this on the <strong>server-side</strong>:</p>
<pre><code>if (itemBelongsToUser(itemId, currentUserId)) {
deleteItem(itemId);
}
</code></pre>
http://stackoverflow.com/questions/1786911/how-to-detect-flv-movie-file-url/1786930#17869302Answer by David Thibault for how to detect .flv movie file URL ?David Thibault2009-11-23T23:57:46Z2009-11-23T23:57:46Z<p>See this question:
<a href="http://stackoverflow.com/questions/1618923/how-to-detect-flv-download-url">http://stackoverflow.com/questions/1618923/how-to-detect-flv-download-url</a></p>
http://stackoverflow.com/questions/1770898/how-to-get-fields-from-such-a-string/1771228#17712281Answer by David Thibault for How to get fields from such a string?David Thibault2009-11-20T15:29:39Z2009-11-22T00:22:38Z<p>This regex should allow you to find any field value. Adjust character escaping as needed</p>
<pre><code>var regex = fieldName + "\";s:\\d*:\"([^\"]*)\"'
</code></pre>
<p>(this is c#)</p>
<p>Note that this will return incomplete values if the strings contain a " character...</p>
http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/1767906#17679060Answer by David Thibault for What's the least useful comment you've ever seen?David Thibault2009-11-20T02:14:37Z2009-11-20T02:14:37Z<p>A classic that we always joke about at my job (complete with typos):</p>
<pre><code>// Its stupid but it work
</code></pre>
<p>This was found multiple times in an old code base.</p>
http://stackoverflow.com/questions/1767880/what-character-encoding-is-this/1767893#17678930Answer by David Thibault for What character encoding is this?David Thibault2009-11-20T02:08:39Z2009-11-20T02:08:39Z<p>URLDecodes to советская гавань. Looks legit but I don't know the language.</p>
http://stackoverflow.com/questions/1515604/how-to-create-a-web-interface-for-a-windows-service-in-net0How to create a web interface for a windows service in .Net ?David Thibault2009-10-04T04:37:50Z2009-10-28T00:21:44Z
<p>I'm looking for a way to host a web UI in a windows service so that I can configure and control it within a browser. I'd like a simple and lightweight solution, and I don't want to use IIS. </p>
<p>I could probably hand-roll most of it but I was wondering if there was something already made to ease the process.</p>
http://stackoverflow.com/questions/1604587/resolving-lucene-index-error/1604606#16046062Answer by David Thibault for Resolving Lucene Index errorDavid Thibault2009-10-22T01:42:25Z2009-10-22T01:42:25Z<p>Looks like a corrupt index. </p>
<p><strong>If</strong> the index can easily be rebuilt from another datasource, the simplest thing to do would be to delete it and rebuild it.</p>
http://stackoverflow.com/questions/1604551/stateful-experience/1604594#16045940Answer by David Thibault for Stateful experienceDavid Thibault2009-10-22T01:38:31Z2009-10-22T01:38:31Z<p>Looks like a homework question. Anyway, it's vague.. Ways to track a user? Ways to store a user's data? </p>
<p>Tracking can be done with cookies, url token or a hidden field (in case of forms).</p>
<p>Storing data can be done a lot of different ways.</p>
<p>The most common scenario is storing a session id in a cookie, and using that id to retrieve the user's session.</p>
http://stackoverflow.com/questions/1597548/form-post-in-iframe-without-affecting-history/1598011#15980110Answer by David Thibault for form POST in iframe without affecting historyDavid Thibault2009-10-21T00:02:58Z2009-10-21T00:02:58Z<p>If your server can run code, you could probably do an ajax query to a "proxy" page on your server, that would then itself run the request on the remote server and return the results to your page.</p>
http://stackoverflow.com/questions/1589359/how-to-index-numeric-fields-and-search-them-by-range-in-lucene-net0How to index numeric fields and search them by range in Lucene.Net ?David Thibault2009-10-19T15:26:41Z2009-10-19T17:45:35Z
<p>I'm looking for an efficient way to index and search numeric fields in Lucene.Net.
Right now my need is for integer values only.</p>
<p>I want to search by ranges of values (between x and y, more than x...). Right now I'm indexing the number as is and manually creating clauses for each value in between the two values, but it quickly generates a lot of clauses and hitting the default limit (1024) when I'm searching for a value between 1000 and 5000, for example. I'm sure there is a better way to do that...</p>
http://stackoverflow.com/questions/1589359/how-to-index-numeric-fields-and-search-them-by-range-in-lucene-net/1590084#15900841Answer by David Thibault for How to index numeric fields and search them by range in Lucene.Net ?David Thibault2009-10-19T17:45:35Z2009-10-19T17:45:35Z<p>Solved it with a RangeQuery. It can also be done with the query parser with the following syntax:</p>
<pre><code>FieldName:[startValue TO endValue]
</code></pre>
<p>Keep in mind that the range query operates on strings, so your numbers must be normalized both in the index and in the query. In my case I normalized to 5 digits with .ToString("00000"). Special handling would be necessary for negative numbers and decimals, but it wasn't an issue in my case.</p>
http://stackoverflow.com/questions/72016/windows-forms-test-automation2Windows Forms Test AutomationDavid Thibault2008-09-16T13:09:48Z2009-10-14T02:50:25Z
<p>We are looking for a way to automate windows forms for acceptance testing. Our requirements are:</p>
<ul>
<li><strong>Must be usable by non-developers</strong> (ie: people with no development environment installed)</li>
<li>Must have a recorder</li>
<li>Must support third-party controls</li>
<li>Must have basic functionality (allow clicking on buttons, inputing text, validating results, accros multiple windows if necessary)</li>
</ul>
<p>Basically, something like <a href="http://selenium.openqa.org/" rel="nofollow">Selenium</a>, but for windows forms.</p>
http://stackoverflow.com/questions/1357979/how-to-test-the-jquery-ui-slider-widget-with-selenium-ide2How to test the jQuery UI slider widget with Selenium IDE ?David Thibault2009-08-31T15:22:04Z2009-09-30T14:56:35Z
<p>Hi,</p>
<p>We are using the <a href="http://jqueryui.com/demos/slider/" rel="nofollow">jQuery UI slider widget</a> in our web application and we want to automate testing of the UI with <a href="http://seleniumhq.org/projects/ide/" rel="nofollow">selenium IDE</a>. We can't find a way to move the slider with selenium's commands. Can it be done?</p>
http://stackoverflow.com/questions/1329613/issue-with-passing-querystring-parameters-via-http-get-to-an-iframe-in-ie/1358393#13583930Answer by David Thibault for Issue with passing querystring parameters via Http Get to an iframe in IEDavid Thibault2009-08-31T17:15:04Z2009-08-31T17:15:04Z<p>The example page you provided is working for me in IE8. The iframe is not as tall as in chrome, but it does have the correct page in it.</p>
<p>As an aside, please note that passing logon credentials via the query string is extremely unsecure and open to various exploits.</p>
http://stackoverflow.com/questions/1335641/how-to-create-bullet-lists-in-wordml0How to create bullet lists in WordML ?David Thibault2009-08-26T15:38:06Z2009-08-26T18:49:19Z
<p>I have the following WordML snippet which works well for numbered lists :</p>
<pre><code><w:wordDocument xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml">
<w:lists>
<w:listDef w:listDefId="1">
<w:lvl w:ilvl="0">
<w:start w:val="1" />
<w:lvlText w:val="%1." />
<w:pPr>
<w:ind w:left="720" w:hanging="360" />
</w:pPr>
</w:lvl>
<w:lvl w:ilvl="1">
<w:start w:val="1" />
<w:lvlText w:val="%2." />
<w:pPr>
<w:ind w:left="1080" w:hanging="360" />
</w:pPr>
</w:lvl>
</w:listDef>
<w:list w:ilfo="2">
<w:ilst w:val="1" />
</w:list>
</w:lists>
<w:body>
<wx:sect>
<w:p>
<w:pPr>
<w:listPr>
<w:ilvl w:val="0" />
<w:ilfo w:val="2" />
</w:listPr>
</w:pPr>
<w:r>
<w:t xml:space="preserve">Item 1</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:listPr>
<w:ilvl w:val="1" />
<w:ilfo w:val="2" />
</w:listPr>
</w:pPr>
<w:r>
<w:t xml:space="preserve">Item 1.1</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:listPr>
<w:ilvl w:val="1" />
<w:ilfo w:val="2" />
</w:listPr>
</w:pPr>
<w:r>
<w:t xml:space="preserve">Item 1.2</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:listPr>
<w:ilvl w:val="0" />
<w:ilfo w:val="2" />
</w:listPr>
</w:pPr>
<w:r>
<w:t xml:space="preserve">Item 2</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:listPr>
<w:ilvl w:val="1" />
<w:ilfo w:val="2" />
</w:listPr>
</w:pPr>
<w:r>
<w:t xml:space="preserve">Item 2.2</w:t>
</w:r>
</w:p>
</wx:sect>
</w:body>
</w:wordDocument>
</code></pre>
<p>However, I can't figure out how to create a bulleted list. I have seen lvlPicBulletId but I don't understand how to use it. Anybody knows how to do it?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1335641/how-to-create-bullet-lists-in-wordml/1336747#13367470Answer by David Thibault for How to create bullet lists in WordML ?David Thibault2009-08-26T18:49:19Z2009-08-26T18:49:19Z<p>Turns out that bullets are simply characters in specific fonts. For example, here is the lvl element for a filled circle :</p>
<pre><code><w:lvl w:ilvl="0">
<w:lvlText w:val="&#183;" />
<w:rPr>
<w:rFonts w:ascii="Symbol" w:h-ansi="Symbol" w:hint="default" />
</w:rPr>
<w:pPr>
<w:ind w:left="720" w:hanging="360" />
</w:pPr>
</w:lvl>
</code></pre>
http://stackoverflow.com/questions/1303483/how-to-generate-urls-on-the-client-side-using-asp-net-mvc2How to generate urls on the client side using ASP.NET MVC ?David Thibault2009-08-20T01:20:43Z2009-08-20T01:30:45Z
<p>One of the great things about ASP.NET MVC is the routing engine. I love to generate my urls and not having anything break when I change the routes.</p>
<p>However, I'm not sure how I can apply this mechanism on the client side.</p>
<p>Let's imagine a common scenario where I have two dropdown lists and the content of the second list depends on the selected item in the first list. I want to load the items of the second list asynchronously, when the selection in the first list changes.</p>
<p>The URL, using the default route, could look like this : /Cars/GetModelsForBrand/Honda</p>
<p>Easy enough...</p>
<pre><code>var url = '/Cars/GetModelsForBrand/' + $("#brands").val();
</code></pre>
<p>What if I change the routing and the url becomes : /Honda/GetModels</p>
<p>I just broke my code in an non-obvious way.</p>
<p>Is there any way to generate urls from the client side ?</p>
http://stackoverflow.com/questions/1137239/how-to-change-the-encoding-of-a-web-service-in-net0How to change the encoding of a web service in .Net ?David Thibault2009-07-16T12:31:43Z2009-07-16T13:54:55Z
<p>We are developing a web service in .Net, and our client would like the responses of the service to be encoded in something other than UTF-8. Is it possible? </p>
<p><a href="http://codeclimber.net.nz/archive/2006/11/15/Want-to-change-the-encoding-for-a-webservice-You-cant.aspx" rel="nofollow">This page</a> seems to indicate it is not possible, but I'd like a second opinion.</p>
<p>The service is an asmx webservice. We are considering switching to WCF if it's the only way to go, but we'd like to keep the effort required for this change to a minimum.</p>
http://stackoverflow.com/questions/300849/html-viewer-for-ics-ical-files1HTML viewer for ics (iCal) filesDavid Thibault2008-11-19T02:31:19Z2009-03-31T06:00:39Z
<p>I'm creating a small app in ASP.NET MVC that generates ics (iCal) files based on certain criterias. The generated files are accessible through a permanent URL (<a href="http://myserver/some/criterias.ics" rel="nofollow">http://myserver/some/criterias.ics</a>).</p>
<p>I am looking for a way to display the calendar data on the page to give the user a preview of the generated file. Ideally, I'd like a Google Calendar type interface embedded in the page. Unfortunately, Google Calendar only seems to allow embedding calendars that have previously been added to their system.</p>
<p>Is there any free service or library that will allow me to embed a calendar for an arbitrary ics file on my site?</p>
http://stackoverflow.com/questions/319716/paging-using-lucene-net/319770#3197708Answer by David Thibault for Paging using Lucene.netDavid Thibault2008-11-26T04:51:59Z2008-11-26T04:51:59Z<p>Here is a way to build a simple list matching a specific page with Lucene.Net. This is not ASP.Net specific.</p>
<pre><code>int first = 0, last = 9; // TODO: Set first and last to correct values according to page number and size
Searcher searcher = new IndexSearcher(YourIndexFolder);
Query query = BuildQuery(); // TODO: Implement BuildQuery
Hits hits = searcher.Search(query);
List<Document> results = new List<Document>();
for (int i = first; i <= last && i < hits.Length(); i++)
results.Add(hits.Doc(i));
// results now contains a page of documents matching the query
</code></pre>
<p>Basically the Hits collection is very lightweight. The cost of getting this list is minimal. You just instantiate the needed Documents by calling hits.Doc(i) to build your page.</p>
http://stackoverflow.com/questions/301095/is-there-any-point-to-writing-your-own-validation-framework-for-mvc-beta-or-do-yo/302874#3028741Answer by David Thibault for Is there any point to writing your own validation framework for MVC beta or do you expect one will be released soon?David Thibault2008-11-19T18:25:22Z2008-11-19T18:25:22Z<p>Are you aware that validation semantics have been added in preview 5? This <a href="http://weblogs.asp.net/scottgu/archive/2008/09/02/asp-net-mvc-preview-5-and-form-posting-scenarios.aspx" rel="nofollow">article from Scott Gu</a> describes how to use it, and <a href="http://weblogs.asp.net/scottgu/archive/2008/10/16/asp-net-mvc-beta-released.aspx#eight" rel="nofollow">this one</a> details the changes in the beta.</p>
<p>I have not personally used it, and it may not fit all your requirements, but I have no doubt it could be extended to behave like you want.</p>
http://stackoverflow.com/questions/300849/html-viewer-for-ics-ical-files/301020#3010200Answer by David Thibault for HTML viewer for ics (iCal) filesDavid Thibault2008-11-19T04:52:28Z2008-11-19T04:52:28Z<p>I've found <a href="http://instantcal.com/" rel="nofollow">InstantCal</a>, which does what I want. The display it creates is not that great though. Also, it seems buggy in Chrome.</p>
<p>I'd like something similar, with a simpler, nicer interface.</p>
http://stackoverflow.com/questions/296783/resharper-vars/296808#2968084Answer by David Thibault for Resharper: varsDavid Thibault2008-11-17T20:33:38Z2008-11-17T20:33:38Z<p>By default, it will "green squiggle" declarations of this type :</p>
<pre><code>Person p = new Person();
^^^^^^
</code></pre>
<p>Because of the repetition.</p>
<p>It will also suggest (small green underscore) var when it can be inferred :</p>
<pre><code>Person p = repository.GetPerson(1);
¯¯¯
</code></pre>
<p>In this case it can be infered because of the return type of the GetPerson method.</p>
<p>As stated by Jon Skeet, you can disable these suggestions in resharper's options.</p>
http://stackoverflow.com/questions/281640/how-do-i-get-a-human-readable-file-size-using-net/281679#28167910Answer by David Thibault for How do I get a human-readable file size using .NET?David Thibault2008-11-11T18:03:31Z2008-11-11T18:10:14Z<p>I did not test this, but it should give you an idea of how to do it.</p>
<pre><code>string[] sizes = { "B", "KB", "MB", "GB" };
double len = new FileInfo(filename).Length;
int order = 0;
while (len >= 1024 && order + 1 < sizes.Length) {
order++;
len = len/1024;
}
string result = String.Format("{0:0.##} {1}", len, sizes[order]);
</code></pre>
http://stackoverflow.com/questions/209389/what-value-to-use-c-adding-numbers-represented-as-strings/209399#2093990Answer by David Thibault for What value to use? C# (Adding numbers represented as strings)David Thibault2008-10-16T16:52:36Z2008-10-16T16:52:36Z<pre><code>int value = 10;// or, int value = Convert.ToInt32("010");
value += 1;
string text = value.ToString("000");
</code></pre>
<p>The "000" in the ToString call is called a <a href="http://msdn.microsoft.com/en-us/library/427bttx3.aspx" rel="nofollow">format string</a>. It tells .net how to print out the number. In this case, the character '0' indicates that for the number at this position, it should display a zero if the number would not otherwise be displayed.</p>
http://stackoverflow.com/questions/188209/how-can-an-aspx-page-get-its-file-system-path/188219#1882195Answer by David Thibault for how can an .ASPX page get its file system path?David Thibault2008-10-09T17:05:06Z2008-10-09T17:33:10Z<pre><code>// File path
string absoluteSystemPath = Server.MapPath("~/relative/path.aspx");
// Directory path
string dir = System.IO.Path.GetDirectoryName(absoluteSystemPath);
// Or simply
string dir2 = Server.MapPath("~/relative");
</code></pre>
http://stackoverflow.com/questions/188214/ms-sql-datetime-prior-than-1-1-1900/188312#1883121Answer by David Thibault for MS SQL datetime prior than 1/1/1900David Thibault2008-10-09T17:29:18Z2008-10-09T17:29:18Z<p>SQL Server 2008 has the DATE data type which can range from 0001-01-01 through 9999-12-31.</p>
<p>With previous versions, your SOL if you need a date prior to 1753-01-01 (Minimum value for DATETIME).</p>
http://stackoverflow.com/questions/1801134/upnp-library-for-net/1801381#1801381Comment by David Thibault on UPnP Library for .NetDavid Thibault2009-11-27T00:40:08Z2009-11-27T00:40:08ZThanks. It's pretty interesting, but the code is MASSIVE, with components scattered across multiple projects. I'm having a hard time making sense of it all. I'm not sure if it would be possible to extract to UPnP components in a usable fashion.http://stackoverflow.com/questions/1801134/upnp-library-for-net/1801331#1801331Comment by David Thibault on UPnP Library for .NetDavid Thibault2009-11-26T05:53:51Z2009-11-26T05:53:51ZThanks, but I linked to this msdn section in my question. I understand the concepts behind UPnP, but I'm looking for an alternative to the microsoft's dll because it does not work with the device I'm using.http://stackoverflow.com/questions/1786890/c-why-cant-a-uint32-be-unboxed-as-uint64/1786931#1786931Comment by David Thibault on C# why can't a UInt32 be unboxed as UInt64?David Thibault2009-11-24T00:07:06Z2009-11-24T00:07:06ZYou could always create your own Convert helpers and then use that.http://stackoverflow.com/questions/1770898/how-to-get-fields-from-such-a-string/1771228#1771228Comment by David Thibault on How to get fields from such a string?David Thibault2009-11-22T00:22:59Z2009-11-22T00:22:59ZThat's right sorry for the mistake!http://stackoverflow.com/questions/1515604/how-to-create-a-web-interface-for-a-windows-service-in-net/1634488#1634488Comment by David Thibault on How to create a web interface for a windows service in .Net ?David Thibault2009-10-28T01:13:17Z2009-10-28T01:13:17ZThank you for your response. I already looked at System.Web.Hosting (actually, I looked at Cassini), and found it a bit complex for my needs. I don't really need to host aspx pages, I just want to be able to respond to incoming requests with code.
I have actually started working on a project that does just that, using System.Net.HttpListener. I plan on making it available as open source when I have a first version. I'll add an answer to this question when I do.http://stackoverflow.com/questions/1597548/form-post-in-iframe-without-affecting-history/1598011#1598011Comment by David Thibault on form POST in iframe without affecting historyDavid Thibault2009-10-21T00:16:52Z2009-10-21T00:16:52ZI see. A quick search seems to indicate it's possible to do using a flash proxy (see <a href="http://blog.monstuff.com/archives/000280.html" rel="nofollow">blog.monstuff.com/archives/000280.html</a>). If you don't want to go down this route, I'm not sure if it's possible.http://stackoverflow.com/questions/319716/paging-using-lucene-net/320773#320773Comment by David Thibault on Paging using Lucene.netDavid Thibault2009-10-05T20:49:12Z2009-10-05T20:49:12ZThe solution I presented answers the question of how to do paging with lucene. Binding the results to a grid is then easy (see my reply to your other comment).http://stackoverflow.com/questions/319716/paging-using-lucene-net/319770#319770Comment by David Thibault on Paging using Lucene.netDavid Thibault2009-10-05T20:46:26Z2009-10-05T20:46:26ZThe datagrid works perfectly well with a List<T>. Just create the list from the info contained in the Document objects and DataBind it to the grid.http://stackoverflow.com/questions/319716/paging-using-lucene-net/320773#320773Comment by David Thibault on Paging using Lucene.netDavid Thibault2009-10-05T12:22:59Z2009-10-05T12:22:59ZI would discourage this practice. Way to many moving parts. Also, hitting the DB for an index search kinds of defeats the purpose.http://stackoverflow.com/questions/1329613/issue-with-passing-querystring-parameters-via-http-get-to-an-iframe-in-ie/1358393#1358393Comment by David Thibault on Issue with passing querystring parameters via Http Get to an iframe in IEDavid Thibault2009-09-03T17:43:49Z2009-09-03T17:43:49ZAh I see now. You are right, it says Sign In. I'm not sure why.http://stackoverflow.com/questions/1357979/how-to-test-the-jquery-ui-slider-widget-with-selenium-ide/1358114#1358114Comment by David Thibault on How to test the jQuery UI slider widget with Selenium IDE ?David Thibault2009-08-31T16:01:50Z2009-08-31T16:01:50ZAwesome, it worked. Thanks!!http://stackoverflow.com/questions/1303483/how-to-generate-urls-on-the-client-side-using-asp-net-mvc/1303489#1303489Comment by David Thibault on How to generate urls on the client side using ASP.NET MVC ?David Thibault2009-08-20T01:36:25Z2009-08-20T01:36:25ZThanks, but unless I'm missing something, it looks like he generates the URLs on the server side.http://stackoverflow.com/questions/1303483/how-to-generate-urls-on-the-client-side-using-asp-net-mvc/1303509#1303509Comment by David Thibault on How to generate urls on the client side using ASP.NET MVC ?David Thibault2009-08-20T01:34:43Z2009-08-20T01:34:43ZDo you mean like this?
var url = '<%= Html.BuildUrlFromExpression<CarsController>(x => x.GetModelsForBrand("[BRANDNAME]")) %>';
var brandUrl = url.replace('\[BRANDNAME\]', $("#brands").val());
Not too clean, but I guess it could do the job.http://stackoverflow.com/questions/1137239/how-to-change-the-encoding-of-a-web-service-in-net/1137307#1137307Comment by David Thibault on How to change the encoding of a web service in .Net ?David Thibault2009-07-16T13:52:36Z2009-07-16T13:52:36ZWe are not using WCF right now, but if it's the only way to do it we might switch to it.
Still, we'd prefer a solution that will work with asmx web services.http://stackoverflow.com/questions/300849/html-viewer-for-ics-ical-files/700183#700183Comment by David Thibault on HTML viewer for ics (iCal) filesDavid Thibault2009-04-03T14:10:50Z2009-04-03T14:10:50ZThank you. However, as stated in the question, I am automatically generating an ICS file and I want to show a preview of it on my web page to give the user an idea of the result. With Google Cal, I have to manually import the ics file in order to embed it, which will not work for my scenario.