User Aaron Palmer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T12:15:14Zhttp://stackoverflow.com/feeds/user/24908http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1783461/how-to-use-the-nhibernate-method-subqueries-leall0How to use the nhibernate method Subqueries.LeAll()Aaron Palmer2009-11-23T14:31:29Z2009-11-23T14:31:29Z
<p>I have searched and have not found much documentation on the Subqueries.LeAll() method. Could someone show me a quick example of how it is used? Thanks!</p>
http://stackoverflow.com/questions/1076573/whats-wrong-with-this-regex-for-validating-emails/1773462#17734621Answer by Aaron Palmer for What's wrong with this RegEx for validating emails?Aaron Palmer2009-11-20T21:50:26Z2009-11-20T21:50:26Z<p>I see that @liam posted a link to the RFC822. But, in keeping with the idea that stackoverflow is a destination, and incase ex-parrot.com takes down the link, or what have you. In it's entirity...</p>
<p>Mail::RFC822::Address: regexp-based address validation</p>
<p>Mail::RFC822::Address is a Perl module to validate email addresses according to the RFC 822 grammar. It provides the same functionality as RFC::RFC822::Address, but uses Perl regular expressions rather that the Parse::RecDescent parser. This means that the module is much faster to load as it does not need to compile the grammar on startup.</p>
<p>Download Mail::RFC822::Address-0.4.tar.gz or read the documentation.</p>
<p>The grammar described in RFC 822 is suprisingly complex. Implementing validation with regular expressions somewhat pushes the limits of what it is sensible to do with regular expressions, although Perl copes well:</p>
<pre><code>(?:(?:\r\n)?[ \t])*(?:(?:(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t]
)+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:
\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(
?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[
\t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\0
31]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\
](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+
(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:
(?:\r\n)?[ \t])*))*|(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z
|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)
?[ \t])*)*\<(?:(?:\r\n)?[ \t])*(?:@(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\
r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[
\t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)
?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t]
)*))*(?:,@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[
\t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*
)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t]
)+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*)
*:(?:(?:\r\n)?[ \t])*)?(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+
|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r
\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:
\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t
]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031
]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](
?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?
:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?
:\r\n)?[ \t])*))*\>(?:(?:\r\n)?[ \t])*)|(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?
:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?
[ \t]))*"(?:(?:\r\n)?[ \t])*)*:(?:(?:\r\n)?[ \t])*(?:(?:(?:[^()<>@,;:\\".\[\]
\000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|
\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>
@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"
(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t]
)*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?
:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[
\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*|(?:[^()<>@,;:\\".\[\] \000-
\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(
?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)*\<(?:(?:\r\n)?[ \t])*(?:@(?:[^()<>@,;
:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([
^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\"
.\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\
]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*(?:,@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\
[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\
r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\]
\000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]
|\\.)*\](?:(?:\r\n)?[ \t])*))*)*:(?:(?:\r\n)?[ \t])*)?(?:[^()<>@,;:\\".\[\] \0
00-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\
.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,
;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?
:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*
(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".
\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[
^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]
]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*\>(?:(?:\r\n)?[ \t])*)(?:,\s*(
?:(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(
?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[
\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t
])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t
])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?
:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|
\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*|(?:
[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\
]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)*\<(?:(?:\r\n)
?[ \t])*(?:@(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["
()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)
?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>
@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*(?:,@(?:(?:\r\n)?[
\t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,
;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t]
)*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*)*:(?:(?:\r\n)?[ \t])*)?
(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".
\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:
\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\[
"()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])
*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])
+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\
.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z
|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*\>(?:(
?:\r\n)?[ \t])*))*)?;\s*)
</code></pre>
<p>This regular expression will only validate addresses that have had any comments stripped and replaced with whitespace (this is done by the module).</p>
<p>Paul Warren 13/04/2002 </p>
http://stackoverflow.com/questions/229815/extreme-programming-does-it-work7Extreme Programming, does it work?Aaron Palmer2008-10-23T13:58:41Z2009-10-26T00:41:37Z
<p>I'm wanting to hear from some people who have actually done extreme programming.</p>
<p>Does it work? Well?</p>
<p>Is it sustainable over the long term?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1556354/how-can-i-write-a-t-sql-query-to-do-a-like-in4How can I write a T-SQL query to do a "like in"?Aaron Palmer2009-10-12T19:11:39Z2009-10-13T13:38:20Z
<p>I need to write a valid T-SQL query version of the following pseudo-code:</p>
<pre><code>select * from newTable where [name] like in (
select [name] from oldTable
)
</code></pre>
<p>I'm not sure how to go about this. Any help (even directing me to an existing question) would be great. Thanks!</p>
<p>Edit:
Per some comments I will clarify this particular case. The tables look like this:</p>
<pre><code>oldTable
code varchar(10)
name varchar(500)
newTable
code varchar(10)
name varchar(500)
</code></pre>
<p>In all of the cases where oldTable.code <> newTable.code, I am wanting to see if the oldTable.name is like one of the names in newTable.name. Basically, some of the new names have had qualifiers added to the beginning or end of the names. ie: 'old name' may have a 'qualified old name' in the newTable. Thanks again.</p>
http://stackoverflow.com/questions/1556354/how-can-i-write-a-t-sql-query-to-do-a-like-in/1556579#15565791Answer by Aaron Palmer for How can I write a T-SQL query to do a "like in"?Aaron Palmer2009-10-12T20:05:57Z2009-10-12T20:29:45Z<p>Thanks everyone. I used the following query, inspired by both LukLed's answer and a comment by Stuart Ainsworth.</p>
<pre><code>SELECT DISTINCT old.code, old.name, new.name, new.code
FROM newTable new
JOIN oldTable old
ON new.name LIKE '%' + old.name + '%'
WHERE new.code <> old.code
ORDER BY old.name, new.name
</code></pre>
<p>Performance isn't that great, but it's a one time analysis and it gets the job done.</p>
<p>The reason I chose this over the "EXISTS" version is because it gives me both results from the new and old tables.</p>
http://stackoverflow.com/questions/417214/how-to-re-position-the-asp-net-ajax-validatorcalloutextender4How to re-position the asp.net ajax ValidatorCalloutExtenderAaron Palmer2009-01-06T16:30:03Z2009-09-17T08:34:14Z
<p>I'm using the ValidatorCalloutExtender found in AjaxControlToolkit version 3.0.20299.9. The validation is occuring in a browser window that has resizable=0 set. The popout box is getting positioned mostly outside of the viewable window - off to the right.</p>
<p>It had positioned correctly with AjaxControlToolkit version 1.0.10618.0. It actually floated over the textbox with the right of the popout just inside the right side of the viewable window with a margin of about 5px. Since we've upgraded versions of the AjaxControlToolkit it seems to render differently. Does anyone know what I need to do to get the popout to position correctly? I've been playing around with the .ajax__validatorcallout_* css classes, but everything I change seems to really screw up the display.</p>
http://stackoverflow.com/questions/191641/report-handler-architecture-question2Report handler architecture questionAaron Palmer2008-10-10T14:38:35Z2009-09-14T00:15:20Z
<p>I am attempting to have a ReportHandler service to handle report creation. Reports can have multiple, differing number of parameters that could be set. In the system currently there are several different methods of creating reports (MS reporting services, html reports, etc) and the way the data is generated for each report is different. I am trying to consolidate everything into ActiveReports. I can't alter the system and change the parameters, so in some cases I will essentially get a where clause to generate the results, and in another case I will get key/value pairs that I must use to generate the results. I thought about using the factory pattern, but because of the different number of query filters this won't work. </p>
<p>I would love to have a single ReportHandler that would take my varied inputs and spit out report. At this point I'm not seeing any other way than to use a big switch statement to handle each report based on the reportName. Any suggestions how I could solve this better?</p>
http://stackoverflow.com/questions/1412126/how-do-i-properly-validate-posted-numeric-values-in-asp-net-mvc0How do I properly validate posted numeric values in asp.net mvc?Aaron Palmer2009-09-11T16:59:22Z2009-09-11T17:25:45Z
<p>In an asp.net mvc web app I want to display a custom message for invalid model values. The issue I'm running into is with numeric properties. A user can put a string into a textbox that is bound to a decimal property and click submit. Since the asp.net mvc model binder cannot bind the string value to the decimal property on my object, it simply keeps it's default value of 0. </p>
<p>I have some model validation going on in my model to check for invalid values and return nice messages, but by the time I reach this code, obviously that decimal property is not invalid on my object (since it is 0). I'm trying to figure out a good way to implement this sort of validation. It seems that I need to intercept the form values and do the validation there. </p>
<p>I had been trying to keep all of my validation in the same place, but it seems like this solution will have many Request.Form's strewn throughout my code. Perhaps I should write my own model binder and put this sort of validation there. I'm just looking for some opinions on this. Thanks!</p>
http://stackoverflow.com/questions/1410722/do-you-feel-comfortable-merging-code/1410768#14107680Answer by Aaron Palmer for Do you feel comfortable merging code?Aaron Palmer2009-09-11T13:09:33Z2009-09-11T13:09:33Z<p>We use svn and have adopted a rule to branch breaking changes. Minor changes are done right in the trunk.</p>
<p>We also branch releases.</p>
<p>Branching and merging have worked well for us. Granted there are times we have to sit and think about how things fit together, but typically svn does a great job of merging everything.</p>
http://stackoverflow.com/questions/401376/asp-net-mvc-put-controllers-into-a-separate-project7asp.net mvc put controllers into a separate projectAaron Palmer2008-12-30T20:19:35Z2009-09-10T16:09:57Z
<p>I'm just learning asp.net mvc and I'm trying to figure out how to move my controllers into a separate project. Typically when I have designed asp.net web apps before, I created one project for my models, another for my logic, and then there was the web. </p>
<p>Now that I'm learning asp.net mvc I was hoping to follow a similar pattern and put the models and controllers each into their own separate projects, and just leave the views/scripts/css in the web. The models part was easy, but what I don't understand is how to make my controllers in a separate project be "found". Also, I would like to know if this is advisable. Thanks!</p>
http://stackoverflow.com/questions/400255/how-to-put-more-than-1000-values-into-an-oracle-in-clause3How to put more than 1000 values into an Oracle IN clauseAaron Palmer2008-12-30T13:35:17Z2009-08-15T09:21:02Z
<p>Is there any way to get around the Oracle 10g limitation of 1000 items in a static IN clause? I have a comma delimited list of many of IDs that I want to use in an IN clause, Sometimes this list can exceed 1000 items, at which point Oracle throws an error. The query is similar to this...</p>
<pre><code>select * from table1 where ID in (1,2,3,4,...,1001,1002,...)
</code></pre>
http://stackoverflow.com/questions/1245985/how-do-i-serialize-an-nhibernate-detachedcriteria-object0How do I serialize an NHibernate DetachedCriteria object?Aaron Palmer2009-08-07T17:23:07Z2009-08-08T13:24:36Z
<p>I am looking for a solution to persist NHibernate DetachedCriteria objects to a database. I have tracked down the NHibernateUtil and the GetSerializable method, but I'm unsure how to use it to serialize a DetachedCriteria object. Any help on this would be greatly appreciated. Thank you.</p>
http://stackoverflow.com/questions/1040114/is-it-possible-to-create-a-new-operator-in-c3Is it possible to create a new operator in c#?Aaron Palmer2009-06-24T18:32:22Z2009-06-24T19:13:14Z
<p>I know you can overload an existing operator. I want to know if it is possible to create a new operator. Here's my scenario.</p>
<p>I want this:</p>
<pre><code>var x = (y < z) ? y : z;
</code></pre>
<p>To be equivalent to this:</p>
<pre><code>var x = y <? z;
</code></pre>
<p>In other words, I would like to create my own <code><?</code> operator.</p>
http://stackoverflow.com/questions/1015001/how-do-i-test-the-nhibernate-fetchmode-eager-properly1How do I test the NHibernate FetchMode.Eager properly?Aaron Palmer2009-06-18T20:23:47Z2009-06-19T13:49:00Z
<p>Is there any way to write an integration test to test that the FetchMode.Eager works correctly? I want to verify that it's not going to the database when I retrieve MySubObject.</p>
<p>The code:</p>
<pre><code>public MyObject GetEager(string name)
{
return Session
.CreateCriteria(typeof(MyObject))
.SetFetchMode("MySubObject", FetchMode.Eager)
.Add(Restrictions.Eq("Name", name))
.UniqueResult<MyObject>();
}
</code></pre>
http://stackoverflow.com/questions/946457/how-do-i-export-an-activereport-to-xls-in-an-asp-net-mvc-app1How do I export an ActiveReport to XLS in an ASP.Net MVC app?Aaron Palmer2009-06-03T18:46:01Z2009-06-04T08:40:54Z
<p>I am unsure how to go about exporting my ActiveReports report document to XLS in my asp.net mvc app. </p>
<p>My concept so far is to have a dropdown of export types and a submit button that submits that value to my controller. When I'm on the controller, I regenerate the report and pass it to my Export method. I'm not sure what to have this Export method return. I'm also getting an out of range error on the actual xlsExport.Export method. Below is my Export method. Also to note, reportBase.Report is an ActiveReport3 object.</p>
<pre><code>private ActionResult Export(ReportBase reportBase)
{
Response.ClearContent();
Response.ClearHeaders();
var exportType = Request.Form["exportType"];
switch (exportType)
{
case "RTF":
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", "attachment;filename=report.rtf");
var rtfExport = new RtfExport();
rtfExport.Export(reportBase.Report.Document, Response.OutputStream);
break;
case "TIFF":
Response.ContentType = "image/tiff";
Response.AddHeader("Content-Disposition", "attachment;filename=report.tif");
var tiffExport = new TiffExport();
var filePath = System.IO.Path.GetTempFileName();
tiffExport.Export(reportBase.Report.Document, filePath);
var fileStream = System.IO.File.Open(filePath, System.IO.FileMode.Open);
var bufferLength = (int)fileStream.Length;
var output = new byte[bufferLength];
var bytesRead = fileStream.Read(output, 0, bufferLength);
Response.OutputStream.Write(output, 0, bytesRead);
System.IO.File.Delete(filePath);
break;
case "XLS":
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", "attachment;filename=report.xls");
var xlsExport = new XlsExport();
xlsExport.Export(reportBase.Report.Document, Response.OutputStream);
break;
}
Response.Flush();
Response.End();
return View("Display", reportBase);
}
</code></pre>
http://stackoverflow.com/questions/848904/in-asp-net-mvc-is-it-possible-to-make-a-generic-controller4In asp.net mvc is it possible to make a generic controller?Aaron Palmer2009-05-11T16:26:01Z2009-05-11T17:10:29Z
<p>I'm attempting to create a generic controller, ie:</p>
<pre><code>public class MyController<T> : Controller where T : SomeType
{ ... }
</code></pre>
<p>However, when I try to use it, I'm running into this error everywhere...</p>
<p>Controller name must end in 'Controller'</p>
<p>So, my question, Is it possible to make a generic controller in asp.net mvc?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/802417/nhibernate-criteria-query-inserts-an-extra-order-by-expression-when-using-jointyp0Nhibernate criteria query inserts an extra order by expression when using JoinType.LeftOuterJoin and ProjectionsAaron Palmer2009-04-29T13:41:12Z2009-05-04T17:49:15Z
<p>Why would this nhibernate criteria query produce the sql query below?</p>
<pre><code>return Session.CreateCriteria(typeof(FundingCategory), "fc")
.CreateCriteria("FundingPrograms", "fp")
.CreateCriteria("Projects", "p", JoinType.LeftOuterJoin)
.Add(Restrictions.Disjunction()
.Add(Restrictions.Eq("fp.Recipient.Id", recipientId))
.Add(Restrictions.Eq("p.Recipient.Id", recipientId))
)
.SetProjection(Projections.ProjectionList()
.Add(Projections.GroupProperty("fc.Name"), "fcn")
.Add(Projections.Sum("fp.ObligatedAmount"), "fpo")
.Add(Projections.Sum("p.ObligatedAmount"), "po")
)
.AddOrder(Order.Desc("fpo"))
.AddOrder(Order.Desc("po"))
.AddOrder(Order.Asc("fcn"))
.List<object[]>();
SELECT this_.Name as y0_,
sum(fp1_.ObligatedAmount) as y1_,
sum(p2_.ObligatedAmount) as y2_
FROM fundingCategories this_
inner join fundingPrograms fp1_
on this_.fundingCategoryId = fp1_.fundingCategoryId
left outer join projects p2_
on fp1_.fundingProgramId = p2_.fundingProgramId
WHERE (fp1_.recipientId = 6 /* @p0 */
or p2_.recipientId = 6 /* @p1 */)
GROUP BY this_.Name
ORDER BY p2_.name asc,
y1_ desc,
y2_ desc,
y0_ asc
</code></pre>
<p>It is incorrectly putting the p2_name asc into the ORDER BY statement, and causing it to crash. This only happens when I use JoinType.LeftOuterJoin on my Projects criteria. Is this a known nhibernate bug? I'm using nhibernate 2.0.1.4000. Thanks for any insight.</p>
http://stackoverflow.com/questions/802417/nhibernate-criteria-query-inserts-an-extra-order-by-expression-when-using-jointyp/821148#8211480Answer by Aaron Palmer for Nhibernate criteria query inserts an extra order by expression when using JoinType.LeftOuterJoin and ProjectionsAaron Palmer2009-05-04T17:49:15Z2009-05-04T17:49:15Z<p>I have posted this as a bug on the nh jira forum.</p>
<p><a href="http://nhjira.koah.net/browse/NH-1761" rel="nofollow">http://nhjira.koah.net/browse/NH-1761</a></p>
http://stackoverflow.com/questions/761288/issue-with-ajax-actionlink-incorrectly-rendering-links-when-using-htmlattributes0Issue with Ajax.ActionLink incorrectly rendering links when using htmlAttributes.Aaron Palmer2009-04-17T17:04:33Z2009-04-17T17:50:35Z
<p>Does anyone know of any issues with rendering incorrect querystrings when using htmlAttributes in an Ajax.ActionLink? It seems that if I put even an empty array in for the htmlAttributes, the link gets rendered incorrectly. Here's my code.</p>
<p>When I do this (note the new { }):</p>
<pre><code><%= Ajax.ActionLink("Delete", "Delete", "Milestone", new RouteValueDictionary { { "id", Model.Id } }, new AjaxOptions { HttpMethod = "GET", UpdateTargetId = "ModalDeleteContainer", OnSuccess = "modalDelete" }, new { })%>
</code></pre>
<p>The link renders like this:</p>
<pre><code><a href="/Client/1/Admin/Milestone/Delete?Count=1&amp;Keys=System.Collections.Generic.Dictionary%602%2BKeyCollection%5BSystem.String%2CSystem.Object%5D&amp;Values=System.Collections.Generic.Dictionary%602%2BValueCollection%5BSystem.String%2CSystem.Object%5D" onclick="Sys.Mvc.AsyncHyperlink.handleClick(this, new Sys.UI.DomEvent(event), { insertionMode: Sys.Mvc.InsertionMode.replace, httpMethod: 'GET', updateTargetId: 'ModalDeleteContainer', onSuccess: Function.createDelegate(this, modalDelete) });">Delete</a>
</code></pre>
<p>When I do this (null instead of new { }):</p>
<pre><code><%= Ajax.ActionLink("Delete", "Delete", "Milestone", new RouteValueDictionary { { "id", Model.Id } }, new AjaxOptions { HttpMethod = "GET", UpdateTargetId = "ModalDeleteContainer", OnSuccess = "modalDelete" }, null)%>
</code></pre>
<p>The link renders like this:</p>
<pre><code><a href="/Client/1/Admin/Milestone/Delete/703c749e-c145-4cf1-90eb-9bee00bac79d" onclick="Sys.Mvc.AsyncHyperlink.handleClick(this, new Sys.UI.DomEvent(event), { insertionMode: Sys.Mvc.InsertionMode.replace, httpMethod: 'GET', updateTargetId: 'ModalDeleteContainer', onSuccess: Function.createDelegate(this, modalDelete) });">Delete</a>
</code></pre>
<p>The only difference between the two is the htmlAttributes argument at the end of the Ajax.ActionLink. Thanks for any insight!</p>
http://stackoverflow.com/questions/710299/is-code-generation-a-bad-thing/710728#7107280Answer by Aaron Palmer for Is Code Generation a Bad Thing?Aaron Palmer2009-04-02T17:21:21Z2009-04-02T17:21:21Z<p>No. Code-gen is neither good nor evil. It's simply a tool. If you use it well, it can save you immeasurable time. If you use it poorly, on the other hand, it can end up costing you that very same immeasurable amount of time. </p>
<p>One little tidbit, if do do code-gen in an oo environment, I'd suggest you wrap the generated classes if you want to extent them from the generated ones.</p>
http://stackoverflow.com/questions/668328/how-to-render-active-reports-webviewer-in-asp-net-mvc3How to render Active Reports WebViewer in ASP.NET MVCAaron Palmer2009-03-20T23:16:53Z2009-03-26T15:36:05Z
<p>I asked this question in the DataDynamics forum earlier today. I thought that maybe I'd get some sort of response here at SO.</p>
<p>I am trying to get the WebViewer up and running in my ASP.NET MVC application.
I am attempting to render the webviewer in the controller (webViewer.RenderControl(htmlTextWriter) and then put the results into ViewData and display the report in my view. I dont' even know if this is the correct way to go about this. Any help would be greatly appreciated. </p>
<p><strong>Controller code:</strong></p>
<pre><code> public ActionResult Display()
{
CurrentReport = new DetailedReport { ReportData = new DetailedData() { Repository = _repository } };
var webViewer = new WebViewer();
CurrentReport.Run();
webViewer.ID = "WebViewer1";
webViewer.Visible = true;
webViewer.ViewerType = ViewerType.HtmlViewer;
webViewer.Width = Unit.Percentage(100);
webViewer.Report = CurrentReport;
var stringWriter = new StringWriter();
var htmlTextWriter = new HtmlTextWriter(stringWriter);
webViewer.RenderBeginTag(htmlTextWriter);
webViewer.RenderControl(htmlTextWriter);
webViewer.RenderEndTag(htmlTextWriter);
ViewData["WebViewer"] = stringWriter.ToString();
return View();
}
</code></pre>
<p><strong>Display.aspx code:</strong></p>
<pre><code><%@ Page Language="C#" MasterPageFile="~/Views/Shared/Admin.Master" Inherits="System.Web.Mvc.ViewPage" %>
<%@ Register assembly="ActiveReports.Web, Version=5.2.1013.2, Culture=neutral, PublicKeyToken=cc4967777c49a3ff" namespace="DataDynamics.ActiveReports.Web" tagprefix="ActiveReportsWeb" %>
<%@ Import Namespace="xxxx.Core"%>
<asp:Content ID="Content1" ContentPlaceHolderID="ClientAdminContent" runat="server">
<%=ViewData["WebViewer"] %>
</asp:Content>
</code></pre>
<p><strong>Error:</strong></p>
<p>Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. </p>
<p>Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.</p>
<p>Source Error: </p>
<p>Line 60: var htmlTextWriter = new HtmlTextWriter(stringWriter);
Line 61: webViewer.RenderBeginTag(htmlTextWriter);
Line 62: webViewer.RenderControl(htmlTextWriter);
Line 63: webViewer.RenderEndTag(htmlTextWriter);
Line 64: </p>
<p>Source File: C:\Projects\xxxx\xxxx\app\xxxx.Web.Controllers\ReportsController.cs Line: 62 </p>
<p><strong>**Update:**</strong></p>
<p>Based on the answer by scott (thank you) my controller now looks like this:</p>
<pre><code> public ActionResult Display()
{
ViewData["Report"] = new DetailedReport { ReportData = new DetailedReport { ReportData = new DetailedData() { Repository = _repository } };
return View();
}
</code></pre>
<p>And my view looks like this: (I have no code behind files for my views).</p>
<pre><code><%
var report = (ActiveReport3) ViewData["Report"];
report.Run();
WebViewer1.Report = report;
%>
<ActiveReportsWeb:WebViewer ID="WebViewer1" runat="server" Height="100%" Width="100%" ViewerType="AcrobatReader" />
</code></pre>
<p>I watch it go through debugger, and it seems to correctly step through the Details section, putting values into my fields. But after all is done, I get the message <strong>"No Report Specified."</strong> I'm hoping that I really don't have to use a codebehind file on my view because I'm not using them anywhere else. I have also debugged to verify that report.Document.Pages.Count > 0. I have put the code block both above and below the WebViewer control (don't think that really matters). Any additional thoughts?</p>
<p><strong>**Update #2:**</strong></p>
<p>I ended up using the answer found here: <a href="http://stackoverflow.com/questions/566902">http://stackoverflow.com/questions/566902<
http://stackoverflow.com/questions/634684/how-could-this-be-better/634778#6347780Answer by Aaron Palmer for How could this be better?Aaron Palmer2009-03-11T14:36:43Z2009-03-11T14:36:43Z<p>Two other options you could consider, depending on your version of mssql... you could construct xml from the imported serials and send that to the db, parse on the db side and return all matches with one trip. The other option is similar, constructing a long comma delimited string of all imported serial numbers and sending that to the sproc into a variable with datatype varchar(max) which can hold 2Gb of text. Then use an "in" clause in your query - again eliminating the multiple trips to the db.</p>
http://stackoverflow.com/questions/630376/best-way-to-send-an-array-of-values-to-a-stored-proc/630439#6304390Answer by Aaron Palmer for Best way to send an array of values to a stored procAaron Palmer2009-03-10T14:20:51Z2009-03-10T14:20:51Z<p>Whenever I have to send an array to a sproc I generally take a step back and consider "why?". Often I am able to send some other criteria to the sproc that would allow the sproc to generate the correct results without the need for an array. </p>
<p>There are cases when I have ended up having to pass the array, and in those cases I have found that passing xml works fine in mssql.</p>
http://stackoverflow.com/questions/610847/how-to-you-attach-a-custom-callback-function-to-the-jquery-autocomplete-extension4How to you attach a custom callback function to the jquery autocomplete extension?Aaron Palmer2009-03-04T14:36:20Z2009-03-04T16:01:44Z
<p>I'm using the jquery autocomplete 1.0.2 extension by Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer. I am attempting to execute my own callback function when .show() and .hide() are called from within the autocomplete control. I haven't found any way for it to actually recognize my callback function. If anyone is familiar with this control and can help I would be greatly appreciative.</p>
http://stackoverflow.com/questions/603040/need-help-understanding-jquery-val-function1Need help understanding jQuery .val() functionAaron Palmer2009-03-02T16:44:42Z2009-03-02T20:20:51Z
<pre><code>alert("data going into $hidden: " + selected.data[1]);
hidden.val(selected.data[1]);
alert("data now in $hidden: " + $hidden.val());
</code></pre>
<p>What would be a reason that $hidden.val() in the last line above would return undefined? I have verified that selected.data[1] contains an integer value.</p>
<p><strong>Edit #1:</strong> Some additional context per comments: ($hidden is a hidden input field)</p>
<pre><code>$.fn.extend({
autocomplete: function(urlOrData, hidden, options) {
var isUrl = typeof urlOrData == "string";
var $hidden = $(hidden);
options = $.extend({}, $.Autocompleter.defaults, {
url: isUrl ? urlOrData : null,
data: isUrl ? null : urlOrData,
delay: isUrl ? $.Autocompleter.defaults.delay : 10,
max: options && !options.scroll ? 10 : 150
}, options);
// if highlight is set to false, replace it with a do-nothing function
options.highlight = options.highlight || function(value) { return value; };
// if the formatMatch option is not specified, then use formatItem for backwards compatibility
options.formatMatch = options.formatMatch || options.formatItem;
return this.each(function() {
new $.Autocompleter(this, options, $hidden);
});
</code></pre>
<p>and...</p>
<pre><code>$.Autocompleter = function(input, options, $hidden) {
//...
function selectCurrent() {
var selected = select.selected();
if (!selected)
return false;
var v = selected.result;
previousValue = v;
if (options.multiple) {
var words = trimWords($input.val());
if (words.length > 1) {
v = words.slice(0, words.length - 1).join(options.multipleSeparator) + options.multipleSeparator + v;
}
v += options.multipleSeparator;
}
alert("data going into $hidden: " + selected.data[1]);
$hidden.val(selected.data[1]);
alert("data now in $hidden: " + $hidden.val());
</code></pre>
<p><strong>Edit #2:</strong> More details.... I'm trying to use the jQuery autocomplete extension on a form with multiple textbox controls (each implement the autocomplete). There's a seperate button on the form beside each textbox that submits the form to a handler function that needs to find the value of the item selected and save it to the db. The way I thought to go about this was to include a hidden field on the form to hold the selected value. </p>
http://stackoverflow.com/questions/603040/need-help-understanding-jquery-val-function/603842#6038421Answer by Aaron Palmer for Need help understanding jQuery .val() functionAaron Palmer2009-03-02T20:20:51Z2009-03-02T20:20:51Z<p>Thanks Paolo Bergantino. I discovered that I wasn't passing the initial hidden in with a # in front of the hidden field id, so $hidden was never getting set properly. It was difficult for me to debug because the the autocomplete is inside an ascx control as an embedded resource. Once I ensured that the value of hidden was including the # it worked properly. </p>
http://stackoverflow.com/questions/248340/config-values-in-db-or-file4Config values in DB or File?Aaron Palmer2008-10-29T20:42:54Z2009-03-01T02:44:26Z
<p>I have some configuration values for an asp.net web app. They will be maintained by a system admin once the system goes live. Should I store these values in the database or in a config file? Is there a best practice for this sort of thing?</p>
http://stackoverflow.com/questions/586444/any-good-spatial-database-tutorials-out-there/586506#5865060Answer by Aaron Palmer for Any good spatial database tutorials out there?Aaron Palmer2009-02-25T15:36:24Z2009-02-25T15:36:24Z<p>You may be interested in <a href="http://www.esri.com/news/arcuser/0799/arcsde.html" rel="nofollow">ESRI's ArcSDE tutorials</a>.</p>
<p><strong>Edit:</strong> Sorry... I just read the question details. And this doesn't really answer your specific need. However, for people looking for an SDE tutorial that are using the ESRI products, they may find this useful.</p>
http://stackoverflow.com/questions/586436/double-tryparse-or-double-convert-what-is-faster-and-more-safe/586458#5864584Answer by Aaron Palmer for Double.TryParse or Double.Convert - what is faster and more safe?Aaron Palmer2009-02-25T15:26:59Z2009-02-25T15:26:59Z<p>If you aren't going to be handling the exception go with TryParse. TryParse is faster because it doesn't have to deal with the whole exception stack trace.</p>
http://stackoverflow.com/questions/390289/what-types-of-coding-anti-patterns-do-you-always-refactor-when-you-cross-them/390492#39049210Answer by Aaron Palmer for What types of coding anti-patterns do you always refactor when you cross them? Aaron Palmer2008-12-24T00:34:57Z2009-02-09T14:33:29Z<p>I once was refactoring and came across something like this code:</p>
<pre><code>string strMyString;
try
{
strMyString = Session["MySessionVar"].ToString();
}
catch
{
strMyString = "";
}
</code></pre>
<p>Resharper pointed out that the .ToString() was redundant, so I took it out. Unfortunately, that ended up breaking the code. Whenever MySessionVar was null, it wasn't causing the NullReferenceException that the code relied on to bump it down to the catch block. I know, this was some sad code. But I did learn a good lesson from it. Don't rapidly go through old code relying on a tool to help you do the refactoring - think it through yourself.</p>
<p>I did end up refactoring it as follows:</p>
<pre><code>string strMyString = Session["MySessionVar"] ?? "";
</code></pre>
<p><strong>Update:</strong> Since this post is being upvoted and technically doesn't contain an answer to the question, I figured I should actually answer the question. (Ok, it was bothering me to the point that I was actually dreaming about it.) </p>
<p>Personally I ask myself a few questions before refactoring. </p>
<p>1) Is the system under source control? If so, go ahead and refactor because you can always roll back if something breaks. </p>
<p>2) Do unit tests exist for the functionality I am altering? If so, great! Refactor. The danger here is that the existence of unit tests don't indicate the accuracy and scope of said unit tests. Good unit tests should pick up any breaking changes.</p>
<p>3) Do I thoroughly understand the code I am refactoring? If there's no source control and no tests and I don't really understand the code I am changing, that's a red flag. I'd need to get more comfortable with the code before refactoring. </p>
<p>In case #3 I would probably spend the time to actually track all of the code that is currently using the method I am refactoring. Depending on the scope of the code this could be easy or impossible (ie. if it's a public API). If it comes down to being a public API then you really need to understand the original intent of the code from a business perspective. </p>
http://stackoverflow.com/questions/1556354/how-can-i-write-a-t-sql-query-to-do-a-like-inComment by Aaron Palmer on How can I write a T-SQL query to do a "like in"?Aaron Palmer2009-10-13T13:31:36Z2009-10-13T13:31:36Z@KM, sorry I thought I had been clear enough in my edit. When I say "like" i mean the ANSI SQL definition of LIKE. So, old "bbb" will match new "xbbb" and old "abc" will match new "abcxyz", but old "abcxyz" will not match new "abc" and old "xyz" will certainly not match new "abc". I hope this clears up the confusion a bit for you. I have found a solution that works for me and I posted it below. I really appreciate everyone's responses. http://stackoverflow.com/questions/1412126/how-do-i-properly-validate-posted-numeric-values-in-asp-net-mvc/1412251#1412251Comment by Aaron Palmer on How do I properly validate posted numeric values in asp.net mvc?Aaron Palmer2009-09-14T20:08:40Z2009-09-14T20:08:40ZOk, ModelStateCollection has ErrorMessage, which is empty, and Exception... which, when drilling down into InnerException a couple times I get something useful. Of course, the most useful message is not the innermost message, or the outermost... <i>sigh</i>http://stackoverflow.com/questions/1412126/how-do-i-properly-validate-posted-numeric-values-in-asp-net-mvc/1412251#1412251Comment by Aaron Palmer on How do I properly validate posted numeric values in asp.net mvc?Aaron Palmer2009-09-11T18:12:39Z2009-09-11T18:12:39ZCorrect, ModelState.IsValid is false. The error message is not very helpful however. I would like to have a friendlier message such as "You can't put a string in a decimal field, dummy." It seems that I have to actually get the form value in order to do that sort of validation.http://stackoverflow.com/questions/1040114/is-it-possible-to-create-a-new-operator-in-c/1040131#1040131Comment by Aaron Palmer on Is it possible to create a new operator in c#?Aaron Palmer2009-06-24T18:37:36Z2009-06-24T18:37:36Zsweet, I really need to look into F#.http://stackoverflow.com/questions/1015001/how-do-i-test-the-nhibernate-fetchmode-eager-properly/1018060#1018060Comment by Aaron Palmer on How do I test the NHibernate FetchMode.Eager properly?Aaron Palmer2009-06-20T12:38:02Z2009-06-20T12:38:02ZOh, this is great! It seems like this is the way lazy loading was meant to be tested, that's why I switched the answer to your answer instead of Gareth.http://stackoverflow.com/questions/1015001/how-do-i-test-the-nhibernate-fetchmode-eager-properly/1017405#1017405Comment by Aaron Palmer on How do I test the NHibernate FetchMode.Eager properly?Aaron Palmer2009-06-19T12:26:22Z2009-06-19T12:26:22ZYeah, this is very similar to how we ended up solving the problem. We used NHibernateSession.Current.Dispose() (where NHibernateSession is a wrapper class in our base architecture - s#arp architecture)http://stackoverflow.com/questions/946457/how-do-i-export-an-activereport-to-xls-in-an-asp-net-mvc-app/949305#949305Comment by Aaron Palmer on How do I export an ActiveReport to XLS in an ASP.Net MVC app?Aaron Palmer2009-06-04T13:20:01Z2009-06-04T13:20:01ZThanks Talljoe! Not only did this make my code look much nicer, it solved the problem. I wasn't sure how to manipulate the response the MVC way. Thanks for the help!http://stackoverflow.com/questions/229815/extreme-programming-does-it-work/875677#875677Comment by Aaron Palmer on Extreme Programming, does it work?Aaron Palmer2009-05-24T00:59:20Z2009-05-24T00:59:20ZHave you done this for a COTS product or for a custom solution for a client? I would sincerely like to know how you go about selling this idea when developing custom solutions for government contracts.http://stackoverflow.com/questions/848904/in-asp-net-mvc-is-it-possible-to-make-a-generic-controller/849072#849072Comment by Aaron Palmer on In asp.net mvc is it possible to make a generic controller?Aaron Palmer2009-05-11T17:39:30Z2009-05-11T17:39:30ZThis is interesting, I'm looking into it. Thanks.http://stackoverflow.com/questions/848904/in-asp-net-mvc-is-it-possible-to-make-a-generic-controller/848969#848969Comment by Aaron Palmer on In asp.net mvc is it possible to make a generic controller?Aaron Palmer2009-05-11T17:38:57Z2009-05-11T17:38:57ZI don't want separate Controllers for each type... I want one generic controller to handle many types.http://stackoverflow.com/questions/761288/issue-with-ajax-actionlink-incorrectly-rendering-links-when-using-htmlattributes/761492#761492Comment by Aaron Palmer on Issue with Ajax.ActionLink incorrectly rendering links when using htmlAttributes.Aaron Palmer2009-04-17T17:52:01Z2009-04-17T17:52:01ZAwesome, that works! Thanks!http://stackoverflow.com/questions/668328/how-to-render-active-reports-webviewer-in-asp-net-mvc/673932#673932Comment by Aaron Palmer on How to render Active Reports WebViewer in ASP.NET MVCAaron Palmer2009-03-26T15:33:40Z2009-03-26T15:33:40Z+1 for very useful info, thanks! the only detail that I needed cleared up was how to avoid using an actual codebehind file (see <a href="http://stackoverflow.com/questions/566902" rel="nofollow">stackoverflow.com/questions/566902</a>)http://stackoverflow.com/questions/566902/alternative-to-using-the-onload-event-in-an-asp-net-mvc-view/567232#567232Comment by Aaron Palmer on Alternative to using the OnLoad event in an ASP.Net MVC View?Aaron Palmer2009-03-26T15:27:19Z2009-03-26T15:27:19ZThank you. I had to do this exactly to make my Active Report correctly generate and bind to my WebViewer control. re: <a href="http://stackoverflow.com/questions/668328/" rel="nofollow">stackoverflow.com/questions/668328</a>http://stackoverflow.com/questions/610847/how-to-you-attach-a-custom-callback-function-to-the-jquery-autocomplete-extension/611218#611218Comment by Aaron Palmer on How to you attach a custom callback function to the jquery autocomplete extension?Aaron Palmer2009-03-04T16:34:01Z2009-03-04T16:34:01Zit works! you're awesome! I actually have the show and hide callback functions that I want called pre-defined, so I just do showCallback:myShow, hideCallback:myHide and it just works, thanks again!http://stackoverflow.com/questions/610847/how-to-you-attach-a-custom-callback-function-to-the-jquery-autocomplete-extension/611218#611218Comment by Aaron Palmer on How to you attach a custom callback function to the jquery autocomplete extension?Aaron Palmer2009-03-04T16:10:52Z2009-03-04T16:10:52Zthanks ybo, giving it a try!