User Micah - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T10:24:59Zhttp://stackoverflow.com/feeds/user/17744http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1777797/prevent-silverlight-3-from-caching-while-debugging3Prevent Silverlight 3 from caching while debuggingMicah2009-11-22T04:20:09Z2009-11-24T01:08:23Z
<p>I'm assuming the issue I'm having is related to caching. Code changes I make are not getting picked up when I debug. Most times I get served a previous version of the app. How do I prevent this from happening?</p>
http://stackoverflow.com/questions/1087031/whats-the-difference-between-openid-and-oauth16What's the difference between OpenID and OAuth?Micah2009-07-06T13:40:02Z2009-11-16T23:44:47Z
<p>I'm really trying to understand the difference between OpenID and OAuth? Maybe there two totally separate things and I'm just totally confused. Could someone explain it to me please? </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/942593/issue-when-trying-to-route-a-path-that-ends-with-a0Issue when trying to route a path that ends with a '.'Micah2009-06-03T00:38:26Z2009-11-03T23:00:01Z
<p>I'm trying to route a path like this:</p>
<pre><code>http://www.wikipediamaze.com/wiki/Washington,_D.C.
</code></pre>
<p>The routing framework is not picking this up as a valid route and giving me a "Cannot find resource" error. Anyone know how I can get around this? It's not even getting to my controller factory so it's as if it doesn't even recognize it as a route or perhaps looking for an actual file.</p>
<p>I don't have any problems with similar routes like this:</p>
<pre><code>http://www.wikipediamaze.com/wiki/United_States
http://www.wikipediamaze.com/wiki/Canadian_Bacon_(film)
</code></pre>
<p>but anytime I end a url with a '.' it doesn't route it. If I do this it works:</p>
<pre><code>http://www.wikipediamaze.com/wiki/?topic=Washington,_D.C.
</code></pre>
<p>The route that I have setup looks like this:</p>
<pre><code>routes.MapRoute(
"wiki",
"wiki/{topic}",
new { controller = "game", action = "continue", topic = "" }
);
</code></pre>
http://stackoverflow.com/questions/143855/do-you-use-code-generation-tools5Do you use code generation tools?Micah2008-09-27T15:43:36Z2009-11-03T14:07:25Z
<p>Do you use code-generation tools (aside from those used to generate proxies and from designers built-in to visual studio)? </p>
<p>What part(s) of your application do you generate? </p>
<p>Do you typically roll your own generator? If so, what type of generator do you write (asp templates, coddom etc.). If not, what 3rd party tools do you use?</p>
<p>I am currently working on a few different projects wich all use a custom code-generator that handles everything from generating the database structure, business entities, DAL, and BLL. I am curious about other peoples experiences are with these kinds of tools.</p>
http://stackoverflow.com/questions/418799/what-does-do-in-javascript11What does ':' do in javascript?Micah2009-01-07T00:52:32Z2009-10-29T13:58:08Z
<p>I'm learning javascript and while browsing throught the JQuery library I see ':' being used alot. What is this used for in javascript? </p>
<pre><code>// Return an array of filtered elements (r)
// and the modified expression string (t)
return { r: r, t: t };
</code></pre>
http://stackoverflow.com/questions/1580087/opening-multiple-sessions-simultaneously-in-nhibernate0Opening multiple sessions simultaneously in NHibernateMicah2009-10-16T19:52:48Z2009-10-22T12:44:41Z
<p>I finally figured out what's wrong with my code, but I'm not sure how to fix it. I have some background processes running on a separate thread that perform some database maintenance tasks. Here's an exmple of what's happening:</p>
<pre><code>//Both processes share the same instance of ISessionFactory
//but open separate ISessions
//This is running on it's own thread
public void ShortRunningTask()
{
using(var session = _sessionFactory.OpenSession())
{
//Do something quickly here
session.Update(myrecord);
}
}
//This is running on another thread
public void LongRunningTask()
{
using(var session = _sessionFactory.OpenSession())
{
//Do something long here
}
}
</code></pre>
<p>Let's say I start <code>LongRunningTask</code> first. While it's running I start <code>ShortRunningTask</code> on another thread. <code>ShortRunningTask</code> finishes up and closes its session. Once <code>LongRunningTask</code> finishes it tries to do something with it's session it created but an error get's thrown saying that the session has already been closed.</p>
<p>Clearly what's happening is that ISessionFactory.OpenSession() is not honoring the fact that I've opened 2 separate sessions. Closing the session opened in <code>ShortRunningTask</code> also closes the session in <code>LongRunningTask</code> How can I fix this? Please help!</p>
<p>Thanks!</p>
<p><hr /></p>
<p><strong>UPDATE</strong></p>
<p>So apparently everyone thinks my fix is totally wrong. So here's the configuration I am using:</p>
<pre><code>_sessionFactory = Fluently.Configure()
.Database(
FluentNHibernate.Cfg.Db.MsSqlConfiguration.MsSql2008
.ConnectionString(db => db.Is(
WikipediaMaze.Core.Properties.Settings.Default.WikipediaMazeConnection)))
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<IRepository>())
.BuildSessionFactory();
</code></pre>
<p>I have no configuration taking place in an xml file. Should there be? What am I missing. Here's another example of how opening multiple sessions fails:</p>
<pre><code>public void OpenMultipleSessionsTest()
{
using(var session1 = _sessionFactory.OpenSession())
{
var user = session1.Get<Users>().ById(1);
user.Name = "New Name";
using(var session2 = _sessionFactory.OpenSession())
{
//Do some other operation here.
}
session1.Update(user);
session1.Flush(); // Throws error 'ISession already closed!'
}
}
</code></pre>
http://stackoverflow.com/questions/341792/using-idataerrorinfo-in-m-v-vm2Using IDataErrorInfo in M-V-VMMicah2008-12-04T19:42:16Z2009-10-19T22:07:48Z
<p>If my domain objects implement IDataErrorInfo, and I am using M-V-VM, how do I propagate errors through the ViewModel into the View? If i was binding directly to the model, I would set the "ValidateOnExceptons" and "ValidateOnErrors" properties to true on my binding. But my ViewModel doesn't implement IDataErrorInfo. Only my model. What do I do?</p>
<p><strong>Clarification</strong>
I am dealing with an existing codebase that implements IDataErrorInfo in the domain objects. I can't just implement IDataErrorInfo in the my view model.</p>
http://stackoverflow.com/questions/1580087/opening-multiple-sessions-simultaneously-in-nhibernate/1590725#1590725-2Answer by Micah for Opening multiple sessions simultaneously in NHibernateMicah2009-10-19T19:48:27Z2009-10-19T19:48:27Z<p>I figured out how to fix the problem. I setup my SessionFactory as a singleton at made it <code>[ThreadStatic]</code> like this:</p>
<pre><code>[ThreadStatic]
private ISessionFactory _sessionFactory;
[ThreadStatic]
private bool _isInitialized;
public ISessionFactory SessionFactory
{
get
{
if(!_isInitialized)
{
//Initialize the session factory here
}
}
}
</code></pre>
<p>The crux of the problem is that creating sessions on separate threads from the same ISessionFactory is problematic. ISessionFactory does not like multiple ISessions being opened at the same time. Closing one, automatically closes any others that are open. Using the <code>[ThreadStatic]</code> attribute creates a separate ISessionFactory for each thread. This allows me to open and close ISessions on each thread without affecting the others.</p>
http://stackoverflow.com/questions/689391/removing-www-from-url-in-iis-61Removing www from url in IIS 6Micah2009-03-27T11:29:52Z2009-10-13T03:00:03Z
<p>I have an SSL certificate setup for www.mydomain.com. I'm having a strange issue in IIS 6. When I navigate to www.mydomain.com everything works fine. Since the www. part is what my ssl certificate is registered under I get no issues. Hwoever, all of my links in my site take me to mydomain.com/mylink which causes a cetificate error because it's not prefixed with www. My website is ASP.Net and all my links are relative to the root (in other words I'm specifying ~/mylink and not hardcoding the mydomain.com part). Any idea why IIS or asp.net is removing www from all my links? </p>
http://stackoverflow.com/questions/144382/what-language-features-1-per-answer-please-should-be-added-to-vb-net-in-future/144417#144417-2Answer by Micah for What language features (1 per answer please) should be added to VB.NET in future versions?Micah2008-09-27T20:37:00Z2009-10-12T22:19:04Z<p>The ability to terminate statements with a semicolon.</p>
http://stackoverflow.com/questions/144382/what-language-features-1-per-answer-please-should-be-added-to-vb-net-in-future/144424#1444240Answer by Micah for What language features (1 per answer please) should be added to VB.NET in future versions?Micah2008-09-27T20:40:43Z2009-10-12T22:04:00Z<p>Better <a href="http://en.wikipedia.org/wiki/IntelliSense" rel="nofollow">IntelliSense</a> for objects with events. When typing: "obj." the list of items should include the events without having to declare the object "with events" or having to do "addhandler".</p>
http://stackoverflow.com/questions/175545/worst-technobabble-youve-ever-heard/175584#17558459Answer by Micah for Worst technobabble you've ever heardMicah2008-10-06T18:29:22Z2009-10-11T02:51:46Z<p><a href="http://www.youtube.com/watch?v=hkDD03yeLnU" rel="nofollow">CSI New York "VB GUI Interface"</a></p>
<blockquote>
<p>“I’ll create a GUI interface using VISUAL BASIC, see if I can track an IP address.”</p>
</blockquote>
http://stackoverflow.com/questions/417811/using-xslt-to-process-business-rules0Using XSLT to process business rules?Micah2009-01-06T19:38:49Z2009-10-09T11:47:36Z
<p>A coworker of mine mentioned that one use of XSLT is processing business rules. He mentioned that there were systems that allowed users to write business rules in some kind of text format, and then the program uses XSLT to process the text and apply the rules at run-time in the application.</p>
<p>Can someone shed some light on this subject for me?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/678922/using-transactions-with-business-processes-and-the-repository-pattern2Using Transactions with Business Processes and the Repository patternMicah2009-03-24T19:36:28Z2009-10-04T03:28:19Z
<p>I have a situation (I'm guessing is pretty standard) where I need to perform some business calculations and create a bunch of records in the database. If anything goes wrong at any point I need to roll everything back from the database. Obviosly I need some kind of transaction. My question is where do I implement transaction support. Here's my example</p>
<pre><code>//BillingServices - This is my billing service layer. called from the UI
public Result GenerateBill(BillData obj)
{
//Validate BillData
//Create a receivable line item in the receivables ledger
BillingRepository.Save(receivableItem);
//Update account record to reflect new billing information
BillingRepository.Save(accountRecord);
//...do a some other stuff
BillingRepository.Save(moreStuffInTheDatabase);
}
</code></pre>
<p>If any of the updates to the database fail I need to roll the other ones back and get out. Do I just expose a Connection object through my Repository in which I can call </p>
<p>Connection.BeginTransaction()</p>
<p>or do I do I just validate in the service layer and just call one method in the repository that saves all the objects and handles the transaction? This doesn't quite seem right to me. It's seem like it would force me to put to much business logic in the data layer.</p>
<p>What's the right approach? What if I need to span repositories (or would that be bad design)?</p>
http://stackoverflow.com/questions/460882/linq-to-sql-and-the-repository-pattern15Linq to Sql and the Repository Pattern.Micah2009-01-20T11:22:03Z2009-10-04T02:20:12Z
<p>I feel like I'm running around in circles. I can't seem to make up my mind as to what the right Repository pattern is using Linq To Sql. If you're familiar with <a href="http://blog.wekeroad.com/" rel="nofollow">Rob Conery's</a> <a href="http://www.codeplex.com/mvcsamples/Release/ProjectReleases.aspx?ReleaseId=18861" rel="nofollow">MVC Storefront</a> you will see that his implementation wraps the Linq-Generated models with another class and treats the Linq-Generated one simply as a Data Transfer Object. It looks something like this:</p>
<pre><code>//Custom wrapper class.
namespace Data
{
public class Customer
{
public int Id {get;set;}
public string Name {get;set;}
public IList<Address> Addresses {get;set;}
}
}
//Linq-Generated Class - severly abbreviated
namespace SqlRepository
{
public class Customer
{
public int Id {get;set;}
public string Name {get;set;}
public EntitySet<Address> {get;set;}
}
}
//Customer Repository
namespace SqlRepository
{
public class UserRepository : IUserRepository
{
private _db = new DB(); //This is the Linq-To-Sql datacontext
public IQueryable GetCusomters()
{
return from c in _db.Customers
select new Customer // This is the wrapper class not the gen'd one
{
Id = c.Id,
Name = c.Name,
Addresses = new LazyList(c.Addresses)
};
}
</code></pre>
<p>What is the advantage of doing it this way (using a wrapper class), as opposed to the way Mike Hadlow suggests <a href="http://mikehadlow.blogspot.com/2008/03/using-irepository-pattern-with-linq-to.html" rel="nofollow">here</a> in his version of IRepository where he just returns the DTO objects from the repository? </p>
<p>My other question is, where should business logic be enforced and checked? Is this in a seperate layer all together called by the repository on save/update, or is it built-in to the wrapper class?</p>
<p>Thanks for all the help.</p>
http://stackoverflow.com/questions/1473684/in-c-3-0-is-there-any-syntax-for-a-block-of-code-that-will-run-only-if-a-foreach/1473705#14737050Answer by Micah for In C# 3.0 is there any syntax for a block of code that will run only if a foreach doesn't have any iterations?Micah2009-09-24T19:28:26Z2009-09-25T13:50:57Z<pre><code>IEnumerable myCollection = GetCollection();
if(myCollection.Any())
{
foreach(var item in myCollection)
{
//Do something
}
}
else
{
// Do something else
}
</code></pre>
http://stackoverflow.com/questions/1473019/how-to-properly-use-a-nhibernate-isession-object-session-is-closed-errors2How to properly use a NHibernate ISession object - Session Is Closed! errorsMicah2009-09-24T17:14:08Z2009-09-24T18:26:48Z
<p>I'm running into issues with my ISessions in NHibernate. I keep getting "Session Closed!" errors. Can some one please show me the correct pattern including a definiion of the following methods and when to use each:</p>
<pre><code>ISession.Close()
ISession.Dispose()
ISession.Disconnect()
</code></pre>
<p>Here's my problem. I have a callback setup to fireoff a process that awards badges to players every couple of minutes. However I keep getting "Session Closed!" errors or errors about not being able to associate collections.</p>
<p>Here's my Repository:</p>
<pre><code>public class NHibernateRepository : IRepository
{
#region Fields
private ISession _session;
private readonly ISessionFactory _sessionFactory;
#endregion
#region Constructors
public NHibernateRepository(ISessionFactory sessionFactory)
{
_sessionFactory = sessionFactory;
}
#endregion
#region IRepository Implementation
public ISession OpenSession()
{
_session = _sessionFactory.OpenSession();
return _session;
}
public IQueryable<TModel> All<TModel>()
{
return _session.Linq<TModel>();
}
public void Save<TModel>(TModel model)
{
_session.Save(model);
}
public void Update<TModel>(TModel model)
{
_session.Update(model);
}
public void Delete<TModel>(TModel model)
{
_session.Delete(model);
}
public ITransaction BeginTransaction()
{
return _session.BeginTransaction();
}
public void Flush()
{
_session.Flush();
}
#endregion
}
</code></pre>
<p>Here's my usage. The repository is getting injected via Structure Map</p>
<pre><code>private Object _awardBadgesLock = new object(); //In case the callback happens again before the previous one completes
public void AwardBadges()
{
lock (_awardBadgesLock)
{
using(session = _repository.OpenSession())
{
foreach (var user in _repository.All<User>().ToList())
{
var userPuzzles = _repository.All<Puzzle>().ByUser(user.Id).ToList();
var userVotes = _repository.All<Vote>().Where(x => x.UserId == user.Id).ToList();
var userSolutions = _repository.All<Solution>().ByUser(user.Id).ToList().Where(x => !userPuzzles.Select(y => y.Id).Contains(x.PuzzleId));
var ledPuzzles = GetPuzzlesLedByUser(user.Id);
AwardPlayerBadge(user, userSolutions);
AwardCriticBadge(user, userVotes);
AwardCreatorBadge(user, userPuzzles);
AwardRidlerBadge(user, userPuzzles);
AwardSupporterBadge(user, userVotes);
AwardPopularBadge(user, userPuzzles);
AwardNotableBadge(user, userPuzzles);
AwardFamousBadge(user, userPuzzles);
AwardLeaderBadge(user, ledPuzzles);
using (var tx = _repository.BeginTransaction())
{
_repository.Update(user);
tx.Commit();
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1445170/tabbing-between-elements-of-a-view-in-wpf-xaml/1445242#14452422Answer by Micah for Tabbing between elements of a view in WPF/xamlMicah2009-09-18T15:22:49Z2009-09-18T15:22:49Z<p>At your root container (in my example it's a user control) set the focus like this:</p>
<pre><code><UserControl FocusManager.FocusedElement="{Binding ElementName=txtMyTextBox}">
<TextBox x:Name="txtMyTextBox" />
</UserControl>
</code></pre>
http://stackoverflow.com/questions/1038646/creating-a-heartbeat-or-windows-service-like-functionality-in-asp-net0Creating a "Heartbeat" or Windows-Service-Like functionality in Asp.NetMicah2009-06-24T14:12:29Z2009-09-18T15:15:08Z
<p>I've heard Jeff and Joel discuss on a podcast what they called a "Heartbeat" which essentially is creating something that acts similar to running a windows service in an website. I was hoping to get some more insight into how something like this would be implemented. Has anyone implemented something like this before and what did you use it for?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1038646/creating-a-heartbeat-or-windows-service-like-functionality-in-asp-net/1445185#14451850Answer by Micah for Creating a "Heartbeat" or Windows-Service-Like functionality in Asp.NetMicah2009-09-18T15:15:08Z2009-09-18T15:15:08Z<p>I found the answer in a combination of places. I took what Jeff Attwood did for stackoverlow <a href="http://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/" rel="nofollow">here</a> as well as the <a href="http://www.codeproject.com/KB/aspnet/ASPNETService.aspx" rel="nofollow">Code Project article</a> and made something that is completely reusable and able to easily be hooked up using an IoC tool. I've posted the full details <a href="http://www.codingcontext.com/post/Creating-Recurring-Services-in-Net.aspx" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/146269/change-wpf-datatemplate-for-listbox-item-if-selected/146423#14642317Answer by Micah for Change WPF DataTemplate for ListBox item if selectedMicah2008-09-28T18:25:32Z2009-09-17T14:39:38Z<p>A full example can be found here on my new blog: <a href="http://codingcontext.wordpress.com/2008/09/28/changing-the-data-template-for-the-currently-selected-item/" rel="nofollow">Coding Context</a></p>
<p>The easiest way to do this is to supply a template for the "ItemContainerStyle" and NOT the "ItemTemplate" property. In the code below I create 2 data templates: one for the "unselected" and one for the "selected" states. I then create a template for the "ItemContainerStyle" which is the actual "ListBoxItem" that contains the item. I set the default "ContentTemplate" to the "Unselected" state, and then supply a trigger that swaps out the template when the "IsSelected" property is true. (Note: I am setting the "ItemsSource" property in the code behind to a list of strings for simplicity)</p>
<pre><code><Window.Resources>
<DataTemplate x:Key="ItemTemplate">
<TextBlock Text="{Binding}" Foreground="Red" />
</DataTemplate>
<DataTemplate x:Key="SelectedTemplate">
<TextBlock Text="{Binding}" Foreground="White" />
</DataTemplate>
<Style TargetType="{x:Type ListBoxItem}" x:Key="ContainerStyle">
<Setter Property="ContentTemplate" Value="{StaticResource ItemTemplate}" />
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="ContentTemplate" Value="{StaticResource SelectedTemplate}" />
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<ListBox x:Name="lstItems" ItemContainerStyle="{StaticResource ContainerStyle}" />
</code></pre>
http://stackoverflow.com/questions/1186682/expectation-failed-when-trying-to-update-twitter-status0Expectation Failed when trying to update twitter statusMicah2009-07-27T06:21:23Z2009-09-10T21:36:23Z
<p>I can't seem to figure this one out. No matter what I do, I keep getting a "417 Expectation failed" error. Everywhere I've looked says that I need to get rid of the Expect header for the HttpWebRequest. Setting the static property <code>ServicePointManager.Expect100Continue = false</code> or the instance property on the web request <code>request.ServicePoint.Expect100Continue = false</code> never get's rid of the header. I have to manually set it to null to remove it.</p>
<p>No matter what though, I STILL get the 417 error. What am I missing?</p>
<pre><code>private static readonly MessageReceivingEndpoint UpdateStatusEndpoint
= new MessageReceivingEndpoint("http://twitter.com/statuses/update.xml", HttpDeliveryMethods.PostRequest);
public static XDocument UpdateStatus(ConsumerBase twitter, string accessToken, string message)
{
var data = new Dictionary<string, string>();
data.Add("status", message);
ServicePointManager.Expect100Continue = false; //Doesn't work
HttpWebRequest request = twitter.PrepareAuthorizedRequest(UpdateStatusEndpoint, accessToken, data);
request.ServicePoint.Expect100Continue = false; //setting here doesn't work either
//request.Expect is still set at this point unless I explicitly set it to null.
request.Expect = null;
var response = twitter.Channel.WebRequestHandler.GetResponse(request); //Throws exception
return XDocument.Load(XmlReader.Create(response.GetResponseReader()));
}
</code></pre>
http://stackoverflow.com/questions/416566/can-someone-please-explain-data-mining-ssis-bi-etl-and-other-related-technolog3Can someone please explain data mining, SSIS, BI, ETL and other related technologies?Micah2009-01-06T13:47:55Z2009-09-10T03:42:48Z
<p>I was talking with a co-worker yesterday regarding a situation where he used SSIS (or something like that) to do some really cool thing with an SSIS Package where he passed in a name like "Dr. Reginald Williams, PhD." and based on some weighting scheme the system was smart enough to figure out how to tokenize it and store it in the database as "Salutation- First Name - Last Name - Suffix". He threw out some buzzwords like BI, and SSIS, ETL, and Data mining. I really wanted more information, but didn't even know where to begin to ask. </p>
<p>I'm a .Net developer and thoroughly versed in C#, Vb.Net, WPF, etc..., but I have no idea what these technologies are, how to add them to my skill set, and whether or not it's something that I really should be focusing on. Any and all direction would be helpful.</p>
http://stackoverflow.com/questions/1034634/what-is-the-difference-between-select-and-set-in-t-sql2What is the difference between SELECT and SET in T-SQLMicah2009-06-23T19:28:24Z2009-09-09T04:44:08Z
<p>I'm working on a stored proc that executes some dynamic sql. Here's the example I found on <a href="http://www.4guysfromrolla.com/webtech/020600-1.shtml" rel="nofollow">4GuysFromRolla.com</a></p>
<pre><code>CREATE PROCEDURE MyProc
(@TableName varchar(255),
@FirstName varchar(50),
@LastName varchar(50))
AS
-- Create a variable @SQLStatement
DECLARE @SQLStatement varchar(255)
-- Enter the dynamic SQL statement into the
-- variable @SQLStatement
SELECT @SQLStatement = "SELECT * FROM " +
@TableName + "WHERE FirstName = '"
+ @FirstName + "' AND LastName = '"
+ @LastName + "'"
-- Execute the SQL statement
EXEC(@SQLStatement)
</code></pre>
<p>If you notice, they are using the keyword <strong>SELECT</strong> intead of <strong>SET</strong>. I didn't know you could do this. Can someone explain to me the differences between the 2? I always thought <strong>SELECT</strong> was simply for selecting records.</p>
http://stackoverflow.com/questions/1013637/unexpected-caching-of-ajax-results-in-ie85Unexpected Caching of AJAX results in IE8Micah2009-06-18T16:14:58Z2009-08-30T22:34:55Z
<p>I'm having a serious issue with Internet Explorer cachings results from a JQuery Ajax request.</p>
<p>I have header on my web page that get's updated everytime a users navigates to a new page. Once the page is loaded I do this</p>
<pre><code>$.get("/game/getpuzzleinfo", null, function(data, status) {
var content = "<h1>Wikipedia Maze</h1>";
content += "<p class='endtopic'>Looking for <span><a title='Opens the topic you are looking for in a separate tab or window' href='" + data.EndTopicUrl + "' target='_blank'>" + data.EndTopic + "<a/></span></p>";
content += "<p class='step'>Step <span>" + data.StepCount + "</span></p>";
content += "<p class='level'>Level <span>" + data.PuzzleLevel.toString() + "</span></p>";
content += "<p class='startover'><a href='/game/start/" + data.PuzzleId.toString() + "'>Start Over</a></p>";
$("#wikiheader").append(content);
}, "json");
</code></pre>
<p>It just injects header info into the page. You can check it out by going to <a href="http://www.wikipediamaze.com" rel="nofollow">www.wikipediamaze.com</a> and then logging in and starting a new puzzle.</p>
<p>In every browser I've tested (google, firefox, safari, ie) it works great EXCEPT in IE. Eveything get's injected just fine in IE <em>THE FIRST TIME</em> but after that it never even makes the call to "/game/getpuzzleinfo" it's like it has cached the results or something.</p>
<p>If I change the call to <code>$.post("/game/getpuzzleinfo", ...</code> IE picks it up just fine. But then Firefox quits working.</p>
<p>Can someone please shed some light on this as to why IE is chaching my <code>$.get</code> ajax calls?</p>
<p>Thanks~</p>
<p><strong>UPDATE</strong></p>
<p>Per the suggestion below, I've changed my ajax request to this which fixed my problem:</p>
<pre><code>$.ajax({
type: "GET",
url: "/game/getpuzzleinfo",
dataType: "json",
cache: false,
success: function(data) { ... }
});
</code></pre>
http://stackoverflow.com/questions/811422/preformatted-text-in-vb-what-is-the-c-equivalent-in-vb5Preformatted text in VB - What is the C# @ equivalent in vb?Micah2009-05-01T13:46:57Z2009-08-28T14:28:07Z
<p>This is probably really obvious and I'm being dense. In C# I can do this:</p>
<pre><code>string = @"this is
some preformatted
text";
</code></pre>
<p>How do I do this in VB?</p>
http://stackoverflow.com/questions/462848/testing-a-website-for-cross-browser-multiple-version-support8Testing a website for cross-browser/multiple-version supportMicah2009-01-20T19:55:26Z2009-08-26T19:47:34Z
<p>This is a multipart question:</p>
<ul>
<li>Is there a tool that let's me view my site in all the major browsers along with different versions of each? </li>
<li>If I have to actually download and install the different versions, where can I find them all?</li>
<li>What's the oldest browser I should support within reason?</li>
</ul>
<p>Thanks!</p>
http://stackoverflow.com/questions/1335025/inproc-session-data-disapearing1InProc session data disapearingMicah2009-08-26T14:16:07Z2009-08-26T16:08:06Z
<p>I just noticed this about a week ago. I'm storing data about the current puzzle a user is playing (www.wikipediamaze.com) like this:</p>
<p>HttpContext.Current.Session.Add("puzzleInfo", currentPuzzleInfo);</p>
<p>I know that storing data in the session using the "InProc" mode is very volatile and will get reset whenever the web.config changes or any number of other factors including recycling the app pool.</p>
<p>However my data is only staying for a few seconds at a time (the time is variable but literally not long at all) and then disappearing. I'm in a shared hosted environment so I don't know if that would have anything to do with it. </p>
<p>Any idea what's going on? Would I be better off just storing it directly on the client as a cookie? Please help.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1324481/setting-the-gzip-compression-in-asp-net1Setting the gzip compression in asp.netMicah2009-08-24T20:11:53Z2009-08-24T20:20:14Z
<p>Is there a way to set the gzip compression at the web.config level or can I only do this in the IIS management console?</p>
http://stackoverflow.com/questions/1295013/routing-issue-in-asp-net-mvc3Routing issue in Asp.Net MvcMicah2009-08-18T16:29:11Z2009-08-20T14:09:17Z
<p>I have a list of puzzles that are tagged with specific "Themes". Think questions on stackoverflow tagged with certain categories.</p>
<p>I'm trying to get my route setup so that it works like this:</p>
<p><a href="http://www.wikipediamaze.com/puzzles/themed/Movies" rel="nofollow">http://www.wikipediamaze.com/puzzles/themed/Movies</a>
<a href="http://www.wikipediamaze.com/puzzles/themed/Movies,Another-Theme,And-Yet-Another-One" rel="nofollow">http://www.wikipediamaze.com/puzzles/themed/Movies,Another-Theme,And-Yet-Another-One</a></p>
<p>My routes are setup like this:</p>
<pre><code> routes.MapRoute(
"wiki",
"wiki/{topic}",
new {controller = "game", action = "continue", topic = ""}
);
routes.MapRoute(
"UserDisplay",
"{controller}/{id}/{userName}",
new {controller = "users", action = "display", userName=""},
new { id = @"\d+" }
);
routes.MapRoute(
"ThemedPuzzles",
"puzzles/themed/{themes}",
new { controller = "puzzles", action = "ThemedPuzzles", themes = "" }
);
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new {controller = "Home", action = "Index", id = ""} // Parameter defaults
);
</code></pre>
<p>My Controller looks like this:</p>
<pre><code>public ActionResult ThemedPuzzles(string themes, PuzzleSortType? sortType, int? page, int? pageSize)
{
//Logic goes here
}
</code></pre>
<p>My Action link call in the views looks like this:</p>
<pre><code> <ul>
<%foreach (var theme in Model.Themes)
{ %>
<li><%=Html.ActionLink(theme, "themed", new {controller = "puzzles", themes = theme})%></li>
<% } %>
</ul>
</code></pre>
<p>However the problem I'm having is this:</p>
<p>The links that get generated show up like this:</p>
<pre><code>http://www.wikipediamaze.com/puzzles/themed?themes=MyThemeNameHere
</code></pre>
<p>To add to this problem the "Themes" parameter on the controller action always comes through as null. It never translates the querystring parameter to the controller action parameter. However, if I manually navigate to </p>
<p><a href="http://www.wikipediamaze.com/puzzles/themed/MyThemeNameHere" rel="nofollow">http://www.wikipediamaze.com/puzzles/themed/MyThemeNameHere</a>
<a href="http://www.wikipediamaze.com/puzzles/themed/MyThemeNameHere,Another-ThemeName" rel="nofollow">http://www.wikipediamaze.com/puzzles/themed/MyThemeNameHere,Another-ThemeName</a></p>
<p>everything works just fine. What am I missing?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1580087/opening-multiple-sessions-simultaneously-in-nhibernateComment by Micah on Opening multiple sessions simultaneously in NHibernateMicah2009-11-03T18:38:55Z2009-11-03T18:38:55ZIt's the same thing because opening sessions on 2 different threads from the same ISessionFactory acts just as if I opened them within one another. The reason is that closing the session from another thread inadvertently closes the session on the other thread as well.http://stackoverflow.com/questions/1580087/opening-multiple-sessions-simultaneously-in-nhibernateComment by Micah on Opening multiple sessions simultaneously in NHibernateMicah2009-10-23T01:12:09Z2009-10-23T01:12:09ZIt doesn't matter what happens in there. I could do absolutely nothing. The point is that closing the inner session causes the outer session to throw an exception because it thinks it's already closed.http://stackoverflow.com/questions/1580087/opening-multiple-sessions-simultaneously-in-nhibernate/1590725#1590725Comment by Micah on Opening multiple sessions simultaneously in NHibernateMicah2009-10-22T14:28:41Z2009-10-22T14:28:41ZI updated the question with more details.http://stackoverflow.com/questions/1580087/opening-multiple-sessions-simultaneously-in-nhibernate/1590725#1590725Comment by Micah on Opening multiple sessions simultaneously in NHibernateMicah2009-10-21T13:46:47Z2009-10-21T13:46:47ZCheck my session factory configuration. What should I be checking for? I'm using fluent NHibernate. What should it look like?http://stackoverflow.com/questions/1580087/opening-multiple-sessions-simultaneously-in-nhibernateComment by Micah on Opening multiple sessions simultaneously in NHibernateMicah2009-10-16T20:14:46Z2009-10-16T20:14:46ZNo I haven't. Is that what I need to do?http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102718#102718Comment by Micah on What was your first home computer?Micah2009-10-07T19:35:32Z2009-10-07T19:35:32ZI loved/love my c64. I had a book full of code to make stupid little games. I used to sneak out of my bedroom at 2am when I was 6 and type in as much of the code as I could. I never got it to work, but I've been passionate about programming ever since.http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871420#871420Comment by Micah on Why do I need an IoC container as opposed to straightforward DI code?Micah2009-10-07T15:37:41Z2009-10-07T15:37:41Z@Joel-spolsky I don't understand why you think it makes the code harder to read. The code is actually simpler to understand. All your dependencies just get injected through the constructors. No tracing of dependencies is necessary. It takes about 2-3 lines of code to setup depending on how many items you need to create.http://stackoverflow.com/questions/1473684/in-c-3-0-is-there-any-syntax-for-a-block-of-code-that-will-run-only-if-a-foreach/1473705#1473705Comment by Micah on In C# 3.0 is there any syntax for a block of code that will run only if a foreach doesn't have any iterations?Micah2009-09-25T13:50:17Z2009-09-25T13:50:17ZThanks Jon. I didn't know about the Any() method. Thanks!http://stackoverflow.com/questions/1473019/how-to-properly-use-a-nhibernate-isession-object-session-is-closed-errors/1473275#1473275Comment by Micah on How to properly use a NHibernate ISession object - Session Is Closed! errorsMicah2009-09-24T18:45:32Z2009-09-24T18:45:32ZI'm not lazy loading anything, so that shouldn't be a problem.http://stackoverflow.com/questions/1473019/how-to-properly-use-a-nhibernate-isession-object-session-is-closed-errors/1473275#1473275Comment by Micah on How to properly use a NHibernate ISession object - Session Is Closed! errorsMicah2009-09-24T18:21:49Z2009-09-24T18:21:49Ztx.commit closes the session?http://stackoverflow.com/questions/1473019/how-to-properly-use-a-nhibernate-isession-object-session-is-closed-errorsComment by Micah on How to properly use a NHibernate ISession object - Session Is Closed! errorsMicah2009-09-24T18:09:33Z2009-09-24T18:09:33ZYes i'ts a web app but I'm not integrating the NHibernate session with Web session.http://stackoverflow.com/questions/1473019/how-to-properly-use-a-nhibernate-isession-object-session-is-closed-errors/1473162#1473162Comment by Micah on How to properly use a NHibernate ISession object - Session Is Closed! errorsMicah2009-09-24T18:06:13Z2009-09-24T18:06:13ZI am using the "using" statement which calls dispose. I'm still getting the error though and it doesn't happen all the time. Just some of the time.http://stackoverflow.com/questions/1445170/tabbing-between-elements-of-a-view-in-wpf-xaml/1445242#1445242Comment by Micah on Tabbing between elements of a view in WPF/xamlMicah2009-09-18T18:45:16Z2009-09-18T18:45:16ZNo sweat. Glad I could help.http://stackoverflow.com/questions/1013637/unexpected-caching-of-ajax-results-in-ie8/1355103#1355103Comment by Micah on Unexpected Caching of AJAX results in IE8Micah2009-08-31T20:53:45Z2009-08-31T20:53:45ZGlad you figured it out. In the future this post would be better suited as a comment.http://stackoverflow.com/questions/21870/system-web-caching-vs-enterprise-library-caching-block/228028#228028Comment by Micah on System.Web.Caching vs. Enterprise Library Caching BlockMicah2009-08-28T13:25:51Z2009-08-28T13:25:51ZThat's the worst/weakest argument I've heard. The cache was most likely implemented by the asp.net team because it was really needed in a web scenario which is why it ended up in that namespace. However being the smart guys that they were they built it without any dependencies on IIS. It should just get moved to system.caching namespace.