User Dan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T17:44:39Zhttp://stackoverflow.com/feeds/user/230http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/805910/automated-web-ui-testing5Automated Web UI TestingDan2009-04-30T08:23:18Z2009-12-10T22:08:54Z
<p>What are the good automated web UI testing tools?</p>
<p>I want to be able to use it in the .Net world - but it doesn't have to written in .net.</p>
<p>Features such as a record mode, integration into build process\ continuous integration would be nice.</p>
<p>Im going to look at:</p>
<ul>
<li><a href="http://wtr.rubyforge.org/" rel="nofollow">Watir</a></li>
<li><a href="http://seleniumrecorder.mozdev.org/" rel="nofollow">Selenium</a></li>
</ul>
<p>Are there any others I should look at?</p>
http://stackoverflow.com/questions/1880458/how-do-i-query-a-property-on-a-record-source-for-a-access-2002-report-in-code0How do I query a property on a record source for a Access 2002 report in code?Dan2009-12-10T11:47:39Z2009-12-10T20:55:26Z
<p>In the 'code behind' of the report is there anything I can do in code to query a property of the record source. </p>
<p>Sorry I'm new to access and VB, but I am wanting to achieve something along the lines of this</p>
<pre><code>If Me.RecordSource["MYFieldName"] = "dan" Then
//do something
End If
</code></pre>
<p>Is this possible?</p>
http://stackoverflow.com/questions/122144/calling-wcf-service-from-silverlight3Calling WCF Service from SilverlightDan2008-09-23T16:30:58Z2009-12-10T08:54:29Z
<p>Im calling a locally hosted wcf service from silverlight and I get the exception below.</p>
<p>Iv created a clientaccesspolicy.xml, which is situated in the route of my host.</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<access-policy>
<cross-domain-access>
<policy>
<allow-from http-request-headers="*">
<domain uri="*"/>
</allow-from>
<grant-to>
<resource path="/" include-subpaths="true"/>
</grant-to>
</policy>
</cross-domain-access>
</access-policy>
</code></pre>
<blockquote>
<p>An error occurred while trying to make
a request to URI
'<a href="http://localhost:8005/Service1.svc" rel="nofollow">http://localhost:8005/Service1.svc</a>'.
This could be due to a cross domain
configuration error. Please see the
inner exception for more details. ---></p>
<p>{System.Security.SecurityException
---> System.Security.SecurityException:
Security error. at
MS.Internal.InternalWebRequest.Send()
at
System.Net.BrowserHttpWebRequest.BeginGetResponseImplementation()
at
System.Net.BrowserHttpWebRequest.InternalBeginGetResponse(AsyncCallback
callback, Object state) at
System.Net.AsyncHelper.<>c__DisplayClass4.b__3(Object sendState) --- End of inner
exception stack trace --- at
System.Net.AsyncHelper.BeginOnUI(BeginMethod
beginMethod, AsyncCallback callback,
Object state) at
System.Net.BrowserHttpWebRequest.BeginGetResponse(AsyncCallback
callback, Object state) at
System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.CompleteSend(IAsyncResult
result) at
System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.OnSend(IAsyncResult
result)}</p>
</blockquote>
<p>Any ideas on how to progress?</p>
http://stackoverflow.com/questions/59791/free-online-private-svn-repositories23Free Online Private SVN repositoriesDan2008-09-12T19:19:43Z2009-12-04T19:21:43Z
<p>Can people recommend an good free online SVN repository?</p>
<p>I found <a href="https://opensvn.csie.org/" rel="nofollow">OpenSVN.csie.org</a> but the message in red is a bit scary.</p>
http://stackoverflow.com/questions/1848128/how-to-install-mysql-as-a-service-with-options0How to install MySQL as a service with options.Dan2009-12-04T16:34:17Z2009-12-04T16:44:10Z
<p>I want to install the MySql service with the --old-passwords flag</p>
<p>Iv tried running this and various permutations of it, but cant get it to work.</p>
<pre><code>"c:\Program Files\MySQL\MySQL Server 4.1\bin\mysqld-nt" --install MySQL -defaults-File="pathtofile" --old-passwords
</code></pre>
http://stackoverflow.com/questions/689300/net-hosting-flexable-medium-trust1.Net Hosting (Flexable Medium Trust)Dan2009-03-27T10:56:46Z2009-12-02T20:59:26Z
<p>Any recommendations for cheap .Net hosting that has flexible medium trust rules allowing the use of reflection?</p>
http://stackoverflow.com/questions/710903/nhibernate-2-fluent-nhibernate-medium-trust3NHibernate 2 + Fluent Nhibernate medium trustDan2009-04-02T18:06:38Z2009-12-01T21:20:09Z
<p>Will NHibernate 2 and\or Fluent Nhibernate work in a medium trust environment. If not are there any work-arounds?</p>
http://stackoverflow.com/questions/57712/mvc-net-and-iis-59MVC .Net and IIS 5Dan2008-09-11T21:30:50Z2009-11-23T13:30:57Z
<p>What is the best way to get hosting of an MVC.Net application to work on IIS 5 (6 or 7). When I tried to publish my MVC application, all I seem to get is 404 errors. Iv done abit of googleing and have found a couple of solutions, but neither seem super elegant, and I worry if they will be unusable once I come to use a shared hosting environment for the application.</p>
<p><a href="http://blogs.microsoft.co.il/blogs/dorony/archive/2007/12/15/using-asp-net-mvc-on-iis-5.aspx" rel="nofollow">Solution 1</a></p>
<blockquote>
<ol>
<li>Right-click your application virtual directory on inetmgr.exe.</li>
<li>Properties->Virtual Directory Tab-> Configuration.</li>
<li>Add a new mapping extension. The extension should be .*, which will be
mapped to the Executable
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll,
or the appropriate location on your
computer (you can simply copy this
from the mapping for .aspx files). On
the mapping uncheck "check that file
exists".</li>
<li>3 X OK and you're good to go.</li>
<li>If you want, you can apply this setting to all your web sites. In
step1, click on the "Default Web Site"
node instead of your own virtual
directory, and in step 2 go to the
"Home Directory" tab. The rest is the
same.</li>
</ol>
</blockquote>
<p>Seems a tad hacky to route everything through ASP.NET</p>
<p><a href="http://blog.pagedesigners.co.nz/?p=29" rel="nofollow">Solutions 2</a></p>
<p>Edit the mvc routing to contain .mvc in the url and then follow the steps in solutions 1 based around this extension.</p>
<blockquote>
<p><img src="http://blog.pagedesigners.co.nz/wp-content/uploads/2007/12/mvc-route-iis51.gif" alt="alt text" /></p>
</blockquote>
http://stackoverflow.com/questions/855098/jquery-calling-action-on-controller-but-not-redirecting-after3JQuery calling Action on Controller (But not redirecting after)Dan2009-05-12T22:02:36Z2009-11-13T21:13:17Z
<p>I have a JQuery confirmation popup, with Yes, No buttons. The Yes button calls this function:</p>
<pre><code> function doStuff() {
$('#confirmPopup').dialog("close");
var someKey = $("#someKey")[0].value;
$.post("/MYController/MyAction", { someKey : someKey },
function(responseText, textStatus, XMLHttpRequest) {
});
return false;
}
</code></pre>
<p>This successfully calls my controller action(2 different attempts):</p>
<pre><code> public ActionResult MyAction(int someKey)
{
//do stuff
return RedirectToAction("OtherAct", "OtherCont");
}
public JavaScriptResult MyAction(int someKey)
{
//do stuff
return JavaScript("Window.location.href='OtherCont/OtherAct';");
}
</code></pre>
<p>In both cases the action gets executed, but re-direct to the other action does not occure. why?</p>
http://stackoverflow.com/questions/1420752/is-double-multiplication-broken-in-net3Is double Multiplication Broken in .NET?Dan2009-09-14T10:30:56Z2009-11-03T13:55:37Z
<p>If I execute the following expression in C#:</p>
<pre><code>double i = 10*0.69;
</code></pre>
<p><code>i</code> is: <code>6.8999999999999995</code>. Why? </p>
<p>I understand numbers such as 1/3 can be hard to represent in binary as it has infinite recurring decimal places but this is not the case for 0.69. And 0.69 can easily be represented in binary, one binary number for 69 and another to denote the position of the decimal place.</p>
<p>How do I work around this? Use the <code>decimal</code> type?</p>
http://stackoverflow.com/questions/1384/subsonic-vs-nhibernate31Subsonic Vs NHibernateDan2008-08-04T16:29:23Z2009-11-03T05:52:18Z
<p>What is the concensus on when to use one of these tools adversed to the other? I find Subsonic very useful in terms of getting things done quickly, but on large projects it tends not to scale, and its ties your domain model to your database model. That is where Nhibernate comes in as it gives you lightweight POCOs that are unrelated to your database model, but the setup time is much longer.</p>
http://stackoverflow.com/questions/969202/creating-custom-options-on-a-product-using-the-magento-api0Creating Custom Options on a Product using the Magento APIDan2009-06-09T10:08:31Z2009-10-26T12:50:37Z
<p>How do I add custom options to a product like you can in the backend, using the API.</p>
<p>Im using C# but if you know how do to this in Php, that would be helpful too. </p>
<p>I noticed that product has this: </p>
<pre><code>var product = new catalogProductCreateEntity();
product.options_container = "blah";
</code></pre>
<p>And there is this: </p>
<pre><code>catalogAttributeOptionEntity optionEntity = new catalogAttributeOptionEntity();
optionEntity.value = "sds";
optionEntity.label = "ere";
</code></pre>
<p>But I cant see a way of utilizing them, im not sure how to make a container, and the catalogAttributeOptionEntity does not have all the properties needed to make a custom option. </p>
http://stackoverflow.com/questions/529007/setting-xml-namespaces-with-the-system-xml-linq-api1Setting xml namespaces with the System.Xml.Linq apiDan2009-02-09T17:07:52Z2009-10-22T07:45:51Z
<p>Im having trouble generating XML along the lines of this:</p>
<pre><code><Root xmlns:brk="http://somewhere">
<child1>
<brk:node1>123456</brk:node1>
<brk:node2>500000000</brk:node2>
</child1>
</Root>
</code></pre>
<p>This code get me most of the way but I cant get the 'brk' namespace infront of the nodes;</p>
<pre><code> var rootNode = new XElement("Root");
rootNode.Add(new XAttribute(XNamespace.Xmlns + "brk", "http://somewhere"));
var childNode = new XElement("child1");
childNode.Add(new XElement("node1",123456));
rootNode.Add(childNode);
</code></pre>
<p>Iv tried this:</p>
<pre><code>XNamespace brk = "http://somewhere";
childNode.Add(new XElement(brk+"node1",123456));
</code></pre>
<p>and this </p>
<pre><code>XNamespace brk = "http://somewhere";
childNode.Add(new XElement("brk:node1",123456));
</code></pre>
<p>but both cause exceptions.</p>
http://stackoverflow.com/questions/1558953/merging-entity-changes-in-nhibernate2Merging entity changes in NhibernateDan2009-10-13T08:41:46Z2009-10-13T09:04:09Z
<p>Given I have a scenario where two users are editing different address object at the same time.*</p>
<p>User 1 edits address.streetname only and saves and User 2 edits address.town and saves.</p>
<p>Is there anyway I can configure nhibernate so that only the changed fields are updated and thus the changes are merged?</p>
<p>I have tied dynamic-update, but his doesnt do the trick, its more an optimization technique.</p>
<pre><code>dynamic-update="true"
</code></pre>
<p>I also experimented with version but this does not seem to have the desired effect.</p>
<pre><code><version name="Version" type="int" column="Version"/>
</code></pre>
<ul>
<li>I appreciate this is a weird scenario, but it is the requirement I was given.</li>
</ul>
http://stackoverflow.com/questions/129133/how-do-i-view-the-sql-that-is-generated-by-nhibernate/1555098#15550981Answer by Dan for How do I view the SQL that is generated by nHibernate?Dan2009-10-12T15:01:55Z2009-10-12T15:01:55Z<p><a href="http://nhprof.com/" rel="nofollow">Nhibernate Profiler</a> is an option, if you have to do anything serious.</p>
http://stackoverflow.com/questions/1323661/location-search-autocomplete-that-integrates-with-bing-google-geocoding0Location search autocomplete that integrates with bing/google geocoding.Dan2009-08-24T17:21:21Z2009-10-01T08:19:03Z
<p>Any nice suggestions on auto complete location searches, that integrate with something like Google or Bings location data?</p>
<p>I am wanting capture the location of my users on sign up, currently I have a free text input box. I am wanting to have some sort of auto complete that guides the user to inputting more sanitised information, ideally I would like to geo-code the user too.</p>
<p>I'm currently using the jQuery <a href="http://docs.jquery.com/Plugins/Autocomplete" rel="nofollow">autocomplete</a> for the autosearch, but this requires me to provide the location data, which i dont have or want to maintain.</p>
http://stackoverflow.com/questions/1500041/buildling-an-array-of-vaules-from-page-elements-in-jquery-javascript1Buildling an array of vaules from page elements in JQuery/JavascriptDan2009-09-30T19:00:07Z2009-09-30T19:01:18Z
<p>I have a set of text boxes in which the user inputs an email address into each one. I want to loop around these and build an array of them. How do I do it?</p>
<pre><code>var emailAddresses = new Array();
$(".email_address").each(
function() {
//add this $(this).val() emailAddresses
}
);
</code></pre>
http://stackoverflow.com/questions/41752/nhibernate-generators9NHibernate GeneratorsDan2008-09-03T14:13:45Z2009-09-30T14:36:06Z
<p>What is the best tool for generating Entity Class and/or hbm files and/or sql script for NHibernate.</p>
<p>This list below is from <a href="http://www.hibernate.org/365.html" rel="nofollow">http://www.hibernate.org/365.html</a>, which is the best any why?</p>
<ul>
<li>Moregen Free, Open Source (GPL) O/R Generator that can merge into existing Visual Studio Projects. Also merges changes to generated classes.</li>
<li>NConstruct Lite Free tool for generating NHibernate O/R mapping source code. Different databases support (Microsoft SQL Server, Oracle, Access).</li>
<li>GENNIT NHibernate Code Generator Free/Commercial Web 2.0 code generation of NHibernate code using WYSIWYG online UML designer.</li>
<li>GenWise Studio with NHibernate Template Commercial product; Imports your existing database and generates all XML and Classes, including factories. It can also generate a asp.net web-application for your NHibernate BO-Layer automatically.</li>
<li>HQL Analyzer and hbm.xml GUI Editor</li>
<li>ObjectMapper by Mats Helander is a mapping GUI with NHibernate support</li>
<li>MyGeneration is a template-based code generator GUI. Its template library includes templates for generating mapping files and classes from a database.</li>
<li>AndroMDA is an open-source code generation framework that uses Model Driven Architecture (MDA) to transform UML models into deployable components. It supports generation of data access layers that use NHibernate as their persistence framework.</li>
<li>CodeSmith Template for NH</li>
<li>NHibernate Helper Kit is a VS2005 add-in to generate classes and mapping files.</li>
<li>NConstruct - Intelligent Software Factory Commercial product; Full .NET C# source code generation for all tiers of the information system trough simple wizard procedure. O/R mapping based on NHibernate. For both WinForms and ASP.NET 2.0.</li>
</ul>
http://stackoverflow.com/questions/719329/mvc-gobal-error-handling-applicationerror-not-firing2MVC Gobal error handling: Application_Error not firingDan2009-04-05T17:25:07Z2009-09-29T18:21:48Z
<p>I am attempting to implement gobal error handeling, in my MVC application.</p>
<p>I have some logic inside my Application_Error that redirects to an ErrorController, but its not working.</p>
<p>I have a break point inside my Application_Error method in the the Global.aspx. </p>
<p>When I force an exception the break point is not being hit. Any idea why?</p>
http://stackoverflow.com/questions/955205/problems-calling-magento-api1Problems calling magento APIDan2009-06-05T10:25:58Z2009-09-17T05:00:56Z
<p>I’m calling the Magento (1.3.1.1) API <a href="http://MAGENTO/api/v2_soap?wsdl" rel="nofollow">http://MAGENTO/api/v2_soap?wsdl</a> . And I’m getting Access Denied Soap exceptions when I call the Login method.</p>
<p><strong>I have created a webservice user called Admin and assigned them to a role that has access to ‘ALL’.</strong></p>
<p>I have another instance of Magento hosted on the same server and it works fine, and I have asked a colleague to give it a try, setting up their own user and calling the webservice and they experience the same problem.</p>
<p><strong>EDIT:</strong>I tried starting from scratch again, reapplying my changes and testing at each stage. Iv managed to pin it down to something in the database as the error occurs again when I re-import the database. So I know its nothing to do with any code or template changes I have made. Still lost though!</p>
http://stackoverflow.com/questions/996914/magento-api-uploaded-products-not-appearing-in-frontend-unless-they-are-re-save1Magento API Uploaded products not appearing in frontend - Unless they are re-saved in backend.Dan2009-06-15T15:58:17Z2009-09-16T18:00:27Z
<p>I’m uploading products via the Magento API and they are not showing up in the frontend. I have to go into the backend, open them up, change <strong>nothing</strong>, save the product and then it will appear.</p>
<p>Any idea why? I assume the act of saving it in the back end, is saving some extra flags in the DB, I just don’t know what. </p>
http://stackoverflow.com/questions/1422096/limiting-controlling-the-users-ability-to-print-in-java0Limiting/controlling the users ability to print in Java.Dan2009-09-14T14:57:49Z2009-09-15T10:44:48Z
<p>I am looking to right an application that limits the number of times a user can print something, its there anything in Java that will allow me to control the printing dialogue to this aim?</p>
<p>Im going to look into these:
<a href="http://www.wildcrest.com/Software/J2PrinterWorks/documentation/J2Printer14.html" rel="nofollow">http://www.wildcrest.com/Software/J2PrinterWorks/documentation/J2Printer14.html</a></p>
<p><a href="http://www.softframeworks.com/products/products.php" rel="nofollow">http://www.softframeworks.com/products/products.php</a></p>
http://stackoverflow.com/questions/1393141/odd-save-behaviour-with-nhibernate-and-rhino-repositories0Odd save behaviour with NHibernate and Rhino RepositoriesDan2009-09-08T10:12:22Z2009-09-09T13:36:00Z
<p>I am experiencing some odd behaviour with NHibernate. I'm retrieving a list of Learners from a repository, updating them as necessary, the odd thing is when I save the first one, the changes made to all the learners are being commited to the database. </p>
<pre><code> [Transaction]
public void UpdateLearner(Learner learner)
{
//UnitOfWork.CurrentSession.Save(learner);
}
</code></pre>
<p>Any ideas why? I dont have caching enabled. I know its something to do with the transaction as the changes get persisted even with the call to the save method commented out.</p>
<p>This is my mapping:</p>
<pre><code><class name="Learner" table="ILR_Learner">
<id name="Id" column="ILRLearnerID">
<generator class="native" />
</id>
<property column="LastWarning" name="LastWarning" type="DateTime" />
<property column="Submitted" name="SuccessfulSubmission" type="DateTime" />
<join table="vwLearnerLSCUpload">
<key column="ILRLearnerID" foreign-key="ILRLearnerID"/>
<property column="Dog" type="DateTime" name="Dog"/>
</join>
<join table="Learner">
<key column="Id" foreign-key="ILRLearnerID"/>
<property column="Food" name="Food" type="String" length="20" />
</join>
</class>
</code></pre>
http://stackoverflow.com/questions/1310646/redirecttoaction-not-refreshing-the-page2RedirectToAction not refreshing the page.Dan2009-08-21T08:12:00Z2009-09-02T19:35:14Z
<p>I have a scenario where I am on a view page and calling a action method in controller A that calls another action in controller B via a RedirectToAction return, and this action returns the view that Im already on.</p>
<p>I want the page to refresh to reflect the updates to the system state these two actions have made, but MVC seems to decide the page does not need to be refreshed as I'm returning to the same view. How do I force a refresh?</p>
<p>Example:</p>
<pre><code>//user is on A/index, and submits a form that calls this in contoller B
public ActionResult ActionInControllerB()
{
//do stuff
return RedirectToAction(ActionNames. ActionInControllerA, ControllerNames.A);
}
public ActionResult ActionInControllerA()
{
//do stuff
return View("index");
}
</code></pre>
http://stackoverflow.com/questions/127932/svn-working-copy-xxx-locked-and-cleanup-failed10SVN Working Copy xxx locked and cleanup failedDan2008-09-24T15:37:37Z2009-08-28T03:10:04Z
<p>I get this error when I do a svn update:</p>
<blockquote>
<p>Working copy xxxxxxxx locked Please
execute "Cleanup" command</p>
</blockquote>
<p>When I run cleanup, i get</p>
<blockquote>
<p>Cleanup failed to process the
following paths: xxxxxx</p>
</blockquote>
<p>How do i get out of this loop?</p>
http://stackoverflow.com/questions/1066127/custom-forms-in-magento0Custom forms in MagentoDan2009-06-30T21:18:47Z2009-08-22T13:10:27Z
<p>Can anyone provide a dummy guide \ code snippets on how to create a front end form in Magento that posts data to a controller action.</p>
<p>Im trying to write a variant of the contact us from. (I know its easy to modify the contact us form, as outlined <a href="http://www.magentocommerce.com/wiki/how%5Fto/add%5Ffields%5Fto%5Fcontact%5Fform" rel="nofollow">here</a>). I'm trying to also create a feedback form with additional fields.</p>
<p>Given this basic form:</p>
<pre><code><form action="<?php echo $this->getFormAction(); ?>" id="feedbackForm" method="post">
<div class="input-box">
<label for="name"><?php echo Mage::helper('contacts')->__('Name') ?> <span class="required">*</span></label><br />
<input name="name" id="name" title="<?php echo Mage::helper('contacts')->__('Name') ?>" value="<?php echo $this->htmlEscape($this->helper('contacts')->getUserName()) ?>" class="required-entry input-text" type="text" />
</div>
<div class="button-set">
<p class="required"><?php echo Mage::helper('contacts')->__('* Required Fields') ?></p>
<button class="form-button" type="submit"><span><?php echo Mage::helper('contacts')->__('Submit') ?></span></button>
</div>
</form>
</code></pre>
<p>What are the basic step I need to take to get inputted name to a controller action for processing?</p>
http://stackoverflow.com/questions/1281933/shortening-url-params-with-mvc-routing1Shortening URL params with MVC routing.Dan2009-08-15T13:45:58Z2009-08-15T15:41:08Z
<p>I have a url along the lines of this:</p>
<blockquote>
<p>example.com/profile/publicview?profileKey=5</p>
</blockquote>
<p>and I want to shorten it to this with routing</p>
<blockquote>
<p>example.com/profile/5</p>
</blockquote>
<p>How do I do this?</p>
<p>This is my attempt:</p>
<pre><code>routes.MapRoute("Profile", "Profile/{profileKey}", new { controller = "Profile", action = "PublicView", profileKey ="" });
</code></pre>
<p>But his produces this error:</p>
<blockquote>
<p>The parameters dictionary contains a
null entry for parameter 'profileKey'
of non-nullable type 'System.Int32'
for method
'System.Web.Mvc.ActionResult
PublicView(Int32)' in
'Website.Controllers.ProfileController</p>
</blockquote>
<p>Action method</p>
<pre><code>public ActionResult PublicView(int profileKey)
{
//stuff
}
</code></pre>
http://stackoverflow.com/questions/1161859/getting-log4net-to-work-under-medium-trust0Getting Log4Net to work under medium trust. Dan2009-07-21T21:28:07Z2009-08-13T14:50:40Z
<p>Is this possible? Or is there an alternate logging framework?</p>
<p>Iv tried the FileAppender, the SmptAppender and a AdoNetAppender. To no avail. </p>
http://stackoverflow.com/questions/1268033/group-by-dates-using-linq0Group By Dates using LinqDan2009-08-12T18:53:06Z2009-08-12T19:21:11Z
<p>What I have is a set of users with join dates and I want to use <a href="http://code.google.com/p/googlechartsharp/" rel="nofollow">GoogleChartSharp</a> to create a chart showing how many users have joined each month.</p>
<p>So I have this set of dates (US format) in a list:</p>
<blockquote>
<p>01/01/2009</p>
<p>02/01/2009 </p>
<p>02/12/2009</p>
<p>03/02/2009 </p>
<p>03/12/2009 </p>
<p>03/22/2009</p>
</blockquote>
<p>Googlechartsharp requires me to do something like this:</p>
<pre><code>string[] monthYears = new string[] { "01/2009", "02/2009", "03/2009"};
int[] number= new int[] {1,2,3};
LineChart chart = new LineChart(150, 150);
chart.SetData(data);
chart.SetLegend(monthYears);
string url = chart.GetUrl();
</code></pre>
<p>How do I utilize linq to get the list of dates into arrays required by google? Or is Linq even the right tool?</p>
http://stackoverflow.com/questions/718669/when-using-redirecttoaction-routevalue-losing-reference-properties0When using RedirectToAction, routeValue losing reference properties.Dan2009-04-05T09:53:36Z2009-07-30T01:39:42Z
<p>So if i do this in the first controller: </p>
<pre><code> public class AController:Controller
{
public ActionResult ActionOne()
{
MyObject myObj = new MyObject()
myObj.Name="Jeff Attwood";
myObj.Age =60;
myObj.Address = new Address(40,"Street");
return RedirectToAction("ActionTwo", "BController", myObj );
}
}
</code></pre>
<p>In the second controller, myObj will come out ok, but Address will be null.</p>
<pre><code>public class BController:Controller
{
public ActionResult ActionOne(MyObject obj)
{
//obj.Address is null?
}
}
</code></pre>
<p>Is this as expected? any way around it?</p>
http://stackoverflow.com/questions/1880458/how-do-i-query-a-property-on-a-record-source-for-a-access-2002-report-in-code/1880667#1880667Comment by Dan on How do I query a property on a record source for a Access 2002 report in code?Dan2009-12-10T15:35:15Z2009-12-10T15:35:15ZThanks! Intellisense seems to agree with you. But when I run the report, I get "<app name> can't find the field 'MyFieldsName' referred to in your expression"http://stackoverflow.com/questions/1821377/winforms-textbox-not-updating-when-datasource-is-changed/1821478#1821478Comment by Dan on Winforms Textbox not updating when datasource is changedDan2009-11-30T18:40:50Z2009-11-30T18:40:50ZIv simplified it by removing one of the existing labels and re-adding it with the same properties and it get the same odd behaviour. The only difference from the base copy are in the designer file, and the are to do with the order in which things are declared and this.somecontrol.Location = new System.Drawing.Point(-10, 809) having different values.http://stackoverflow.com/questions/1500041/buildling-an-array-of-vaules-from-page-elements-in-jquery-javascript/1500048#1500048Comment by Dan on Buildling an array of vaules from page elements in JQuery/JavascriptDan2009-09-30T19:05:19Z2009-09-30T19:05:19ZThanks, I through there would be a nice shorthand way of doing it. http://stackoverflow.com/questions/1422096/limiting-controlling-the-users-ability-to-print-in-java/1422119#1422119Comment by Dan on Limiting/controlling the users ability to print in Java.Dan2009-09-14T15:08:10Z2009-09-14T15:08:10ZThank Adamski, some good tips.http://stackoverflow.com/questions/1420752/is-double-multiplication-broken-in-net/1420899#1420899Comment by Dan on Is double Multiplication Broken in .NET?Dan2009-09-14T11:11:55Z2009-09-14T11:11:55ZWell admittedly I don't have a deep understanding of this. But I was thinking there must be some sort of work around to this, such as using some alternate notation, it seems to be the number 69 its easily storable in binary, as well as the position of a decimal point.http://stackoverflow.com/questions/1420752/is-double-multiplication-broken-in-netComment by Dan on Is double Multiplication Broken in .NET?Dan2009-09-14T10:53:05Z2009-09-14T10:53:05ZWell it was slightly tongue in cheek. None the less its an interesting problem.http://stackoverflow.com/questions/1420752/is-double-multiplication-broken-in-net/1420758#1420758Comment by Dan on Is double Multiplication Broken in .NET?Dan2009-09-14T10:51:03Z2009-09-14T10:51:03ZI might be showing my naivety, but why doesn't the framework work around this and hide this problem from me and give me the right answer,0.69!!! http://stackoverflow.com/questions/1393141/odd-save-behaviour-with-nhibernate-and-rhino-repositories/1394615#1394615Comment by Dan on Odd save behaviour with NHibernate and Rhino RepositoriesDan2009-09-09T08:10:26Z2009-09-09T08:10:26ZInteresting. So how do I actually persist just one of my entities without persisting them all?http://stackoverflow.com/questions/1323661/location-search-autocomplete-that-integrates-with-bing-google-geocoding/1325232#1325232Comment by Dan on Location search autocomplete that integrates with bing/google geocoding.Dan2009-08-25T21:35:22Z2009-08-25T21:35:22ZKinda cool, but its very US centric, and the wiki like pop-ups are abit overkill.http://stackoverflow.com/questions/1323661/location-search-autocomplete-that-integrates-with-bing-google-geocoding/1323803#1323803Comment by Dan on Location search autocomplete that integrates with bing/google geocoding.Dan2009-08-24T20:55:27Z2009-08-24T20:55:27ZI was going off the jQuery examples <a href="http://jquery.bassistance.de/autocomplete/demo/" rel="nofollow">jquery.bassistance.de/autocomplete/demo</a>. Your right it could be from a database, but I dont really want to maintain that data, would rather it be an external service.http://stackoverflow.com/questions/1310646/redirecttoaction-not-refreshing-the-page/1311262#1311262Comment by Dan on RedirectToAction not refreshing the page.Dan2009-08-21T12:51:21Z2009-08-21T12:51:21ZUnfortunately this is not the problem. My ORM has done all its work, and there are other client side bits that should appear in either case.http://stackoverflow.com/questions/1310646/redirecttoaction-not-refreshing-the-pageComment by Dan on RedirectToAction not refreshing the page.Dan2009-08-21T09:30:14Z2009-08-21T09:30:14ZAdded code as you asked. Thanks Davidhttp://stackoverflow.com/questions/1281933/shortening-url-params-with-mvc-routingComment by Dan on Shortening URL params with MVC routing.Dan2009-08-15T15:09:54Z2009-08-15T15:09:54ZDone. Didn't include the method body as its not getting that far.http://stackoverflow.com/questions/1281933/shortening-url-params-with-mvc-routing/1281975#1281975Comment by Dan on Shortening URL params with MVC routing.Dan2009-08-15T15:02:28Z2009-08-15T15:02:28ZThis answer tell mes how to stop the exception which is the wrong approche. The exception shouldnt happen in the first place if the routing is done right.http://stackoverflow.com/questions/1281933/shortening-url-params-with-mvc-routing/1282014#1282014Comment by Dan on Shortening URL params with MVC routing.Dan2009-08-15T14:57:11Z2009-08-15T14:57:11ZNo that cause the same exception. The best I can come up with is routes.MapRoute("Profile", "Profile", new { controller = "Profile", action = "PublicView" }); but this produces a url of example.com/profile?profileKey=5, which still isnt perfect.