Saturday, November 01, 2008

I have spent the past couple of days verifying my web application on windows 2008.  One issue that has plagued me is gif files were not served.  At first I thought this might be an access right issue since my program is installed under program files.  But after adding every imaginable access right to this vpc still no gif would be served. Next I thought it might be caching so I disabled that, but still no image would be served.  Finally  it turns out that when I installed iis I did not install the static content option.  which prevents my .js javascript files and images from being served.

posted by Aaron Fischer on Saturday, November 01, 2008 10:44:07 AM (Pacific Standard Time, UTC-08:00)   #    Comments [0]
 Monday, October 20, 2008

Just remember if you run into a control that does not support ToolTipService(). ToolTip you can always create a invisible boarder around the control.  And you can use that border to display your tool tip.

posted by Aaron Fischer on Monday, October 20, 2008 11:14:39 AM (Pacific Standard Time, UTC-08:00)   #    Comments [0]
 Thursday, October 02, 2008
From the channel nine screen cast Silverlight - Handling HTML Events in .NET Code by Mike Taulty
 
Void OnLoaded (object sender, RoutedEventArgs e)
{
    HtmlElement element =
        HtmlPage.Document.GetElementById("MyButton");
    element.AttachEvent("onclick", (EventHandler)MyHandler);
}
void MyHandler( object sender, EventArgs args)
{
    //Do something.
}
posted by Aaron Fischer on Thursday, October 02, 2008 9:19:01 AM (Pacific Standard Time, UTC-08:00)   #    Comments [0]
 Saturday, September 27, 2008

After installing silverlight tools for  visual studio

I receive the following error message in visual studio 2008 Preview

Derived method 'OnApplyTemplate' in type 'System.Windows.Controls.GridSplitter' from assembly 'System.Windows.Controls.Extended, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' cannot reduce access.

posted by Aaron Fischer on Saturday, September 27, 2008 10:31:33 PM (Pacific Standard Time, UTC-08:00)   #    Comments [0]
 Friday, September 05, 2008

I have a solution that when compiled under the IDE all of the projects build with no issue.  However when compiled with msbuild, I receive the following error message “error BC30201: Expression expected. ” on line 506 and 238 of a vb.net project.

line 505 If Counter => e.NumberOfItems Then
line 238 If Counter => e.NumberOfItems Then

 

I made a typo with => it should be >=.   But why does it compile under the IDE?  If I format the the document then the IDE corrects the typo.  So this looks like another example of vb not compiling the code I wrote.

posted by Aaron Fischer on Friday, September 05, 2008 6:28:10 AM (Pacific Standard Time, UTC-08:00)   #    Comments [0]
 Thursday, August 28, 2008

There seem to be a movement that would like to sell you on the idea of social networks marketing( The Power of Web 2.0 in Your Hands ).  But before you shell out the cash and join the social network revolution.  I think you should read Particle Physics, Mortgage, and Unconventional Advice .   My opinion, if your passionate about your work and love talking about it, blog.  The rest will come naturally.

posted by Aaron Fischer on Thursday, August 28, 2008 2:07:00 PM (Pacific Standard Time, UTC-08:00)   #    Comments [0]

Firefox 3 makes a call to your anti virus software to scan your down loaded file.  This typically results in a double scan or an unnecessary scan when you trust the download source.

There is no intuitive way to disable this feature but thanks to gHacks I was able to find a configuration setting for this feature.

You can navigate to about:config in Firefox and double click the browser.download.manager.scanWhenDone to set its value to false.  No more time wasted scanning the file.

posted by Aaron Fischer on Thursday, August 28, 2008 9:54:20 AM (Pacific Standard Time, UTC-08:00)   #    Comments [0]

What I find disturbing is that Lloyds is storing the password in plain text in their database and employees have access to that account data.

read the story at bbc

posted by Aaron Fischer on Thursday, August 28, 2008 7:52:19 AM (Pacific Standard Time, UTC-08:00)   #    Comments [0]
 Tuesday, August 26, 2008

Why aren't asp.net blogs engines as popular as moveable type, blogger, typepad or wordpress?  The asp.net applications seem to almost hide from public discussions.  Is it the windows platform?  Our open source communities faltering?  Or lack of free hosting?

posted by Aaron Fischer on Tuesday, August 26, 2008 9:06:59 PM (Pacific Standard Time, UTC-08:00)   #    Comments [0]

The Mac Book hard drive tanked tonight.  I think Apple has quality control issues to address, there seems to be a lot of this type of thing going around the school district.  We took it to the Apple store for a "genius" to fix(yea no files could be recovered!).  To bad the district will want to put their kooky build of Tiger back on the re-imaged Mac Book.  While The Apple employees were very nice and not smug at all, it was still a culture shock to go into the store.  I am so do not fit in that sub culture.  I still find it ironic that the Apples in my house cause more grief then the pcs.

posted by Aaron Fischer on Tuesday, August 26, 2008 6:35:38 PM (Pacific Standard Time, UTC-08:00)   #    Comments [0]