Hello, I'm
Jason
I live with my family in the rolling hills of Northeastern Pennsylvania. I'm a web developer by trade, but have broad experience in various business areas. Want to know more about me?
Copy Source As HTML in Visual Studio 2008
Still Some Openings for TECHbash 2008
We still have some open registration for TECHbash 2008. Be sure to visit http://techbash.com/registration to register for the event. We’ve confirmed some great speakers from some great companies including, but not limited to, Microsoft, Cisco, Oracle, and Nortel. Joe Stagner will be presenting the keynote presentation.
Read MoreRegister Today For TECHbash 2008
[](http://techbash.com/registration/) |
Since its inception in 2005, TECHbash has evolved into the premier technology conference in Northeastern Pennsylvania. Join an estimated 300 Developers, IT Professionals, CIO’s and Industry Experts from Maryland, New Jersey, New York, and host-state, Pennsylvania. This one day event brings together a broad spectrum of Technology Professionals to network, knowledge share and discuss existing technology solutions to business challenges, as well as preview prerelease products on the bleeding edge.
This year, we expanded to three tracks offering more presentations and providing you with more content choices representing a greater breadth of Industry insight. We will open the event with a keynote presentation from the unstoppable juggernaut, Joe Stagner, Program Manager for Microsoft’s Web Tools and Platform Division.Attendees will have the opportunity to:
Read MoreHow To: Properly Reference A JavaScript File
Wow. After 2 hours of pain and suffering, I ran into my own daily WTF. I had some script contained within a .js file in my web. Like many times before, I created a reference to the script in the header. However, the script would only work in the Internet Explorer family and not in Firefox. After some aggravation (and my Starbuck’s Pike Place Roast kicking in) I realized that the MIME type was set to text/jscript
instead of text/javascript
. I wish we can modify IntelliSense locally to get items added/removed as needed.
Mario Brothers in JavaScript
I came across this post and found it to be an interesting implementation of Mario. The game is written in 14kb of JavaScript. Check it out at http://blog.nihilogic.dk/2008/04/super-mario-in-14kb-javascript.html.
Read MoreExpression Blend Tip: Modifying the Rows or Columns of a Grid
It took me a couple of minutes to realize that RowDefinitions and ColumnDefinitions of a Grid are in the Advanced Properties of the Layout category. For more information about using a Grid to layout data, you can read more on Scott Guthrie’s blog at http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-2-using-layout-management.aspx.
Read MoreXAML Tip: Adding a Line Break to a TextBlock
I’m just starting to mess with XAML as I’m looking to see what I can do with it. As I come across some pretty basic tasks that I’m struggling with, I’ll post about it in case any other newbies run into the same issue. One of my first tasks was to create some text on a canvas. However, I couldn’t figure out how to do a line break. After searching Live and Google in an attempt to find something, I finally did (on page 3 of each engine). There is an object called <LineBreak/>
that will perform a line break in your text. For example:
I’m just starting to mess with XAML as I’m looking to see what I can do with it. As I come across some pretty basic tasks that I’m struggling with, I’ll post about it in case any other newbies run into the same issue. One of my first tasks was to create some text on a canvas. However, I couldn’t figure out how to do a line break. After searching Live and Google in an attempt to find something, I finally did (on page 3 of each engine). There is an object called <LineBreak/>
that will perform a line break in your text. For example:
Searching Twitter Posts
I was reading a post by Michael Arrington about his enjoyable weekend and learned something. It has nothing to do with chickens. I always knew there were services that archived Twitter posts, but I was never satisfied with anything I found until this… Tweet Scan. It’s a great service. By all means check it out!
Read MoreApril Fools? Yahoo Accepts Bid To Be Bought Out By Microsoft
I just noticed that my RSS feed reader had a new posting from InfoWorld about Yahoo accepting a bid to be bought out by Microsoft. The URL contains the words “april” and “fools” and it would make sense as I believe they have pulled a stunt like this before. However, to someone who may forget the day of the year, this may seem like a believable story. Here it is:
Read MoreAllowing a Server Control to Contain Custom Child Collection
I’ve probably done this at least a dozen times, but when you don’t do something everyday, you tend to forget. I created a custom control that I wanted to place into a control collection. So, I created the child control as a custom server control. Then I created another server control that contained a property called Items as a Generic.List(Of T)
where T was my custom child control. I kept running my app and couldn’t figure out why I couldn’t create my child controls in the Parent. I forgot that I had to import the namespace System.ComponentModel
and add the PersistenceMode
property to the property. So, my code looked like this: