From a .NET Geek RSS 2.0
# Tuesday, May 13, 2008

From all that I have seen Brad Abrams as the best wrap up of what is in SP1 at hi blog post Visual Studio 2008 and .NET Framework 3.5 "SP1" Beta. It did not hurt that I stopped looking after I found it ;).

Technorati Tags: ,
Tuesday, May 13, 2008 3:26:56 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
.NET | ASP.NET | VB.NET | Visual Studio
# Friday, July 13, 2007

I recently able to help the Southern California DotNetNuke Users Group to host a virtual presentation by Shaun Walker the dotNetNuke projector founder. We used Microsoft Live meeting to project Shaun's slides and show is real time demonstrations to the group in Buena Park, CA while he was at his home in Canada.

To get all the information about the meeting and how you can view the recording go to Michael Washington's blog post entry about the meeting on the dotnetnuke web site.

Friday, July 13, 2007 10:04:04 PM (GMT Standard Time, UTC+00:00)  #    Comments [1] -
ASP.NET | General | MVP
# Wednesday, May 30, 2007

LA event next week... sorry for the late heads up.

ARE YOU INTERESTED IN LEARNING ABOUT THE NEXT GENERATION OF THE WEB?
Come join our Web Experience Events where you can learn about design tools, web building and web management software!

Friday, June 08, 2007 8:00 AM - Friday, June 08, 2007 6:00 PM Pacific Time (US & Canada)
Welcome Time: 7:30 AM

Microsoft Los Angeles Office
333 South Grand Ave,
Suite 3300 Los Angeles California 90071
Map

Register

Technorati Tags: , , , , ,
Wednesday, May 30, 2007 10:43:15 PM (GMT Standard Time, UTC+00:00)  #    Comments [3] -
.NET | Ajax | ASP.NET | Event
# Monday, April 30, 2007

I just had a wow moment... I was not paying attention to the presentation I should be paying attention to and catching up on blog reading and found this entry by Adam Hems Link to A British Geek in Texas Pontificates : Caching in Winforms / SmartClient Apps. The interesting thing he suggests is to use the System.Web.Caching namespace on a Windows Form application to cache client data... WOW I have used the winforms namespaces in a web app in the past but I never thought to try the reverse. I can't wait to play with this.

Technorati tags: , ,
Monday, April 30, 2007 8:54:20 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
.NET | ASP.NET | C#
# Wednesday, March 21, 2007

I know that more people in the world know Scott Mitchell than know me but for the few of you that may not know this he is going to be doing a class as described below:

ASP.NET Black Belt Training - Saturday, April 21st, 2007

San Diego, California

Cost: $199 (good through March 31st; afterwards, $299)

Overview: Learn a variety of real-world tips, tricks, and techniques for building data-driven ASP.NET 2.0 web applications in this one-day event with speaker, author, and consultant Scott Mitchell. Over the course of the day, Scott will walk attendees through the process of creating a feature-rich web application. Starting from scratch, the talk includes discussions and demonstrations on Membership, building an application architecture, techniques for code reuse, caching to boost performance, and many other topics.

Detailed Outline:

http://fuzzylogicinc.net/BlackBelt/Outline.aspx

Signup/more information:

http://fuzzylogicinc.net/BlackBelt/Default.aspx

The best part of getting to hear Scott is all is points are extremely real world!

Technorati tags: , , ,
Wednesday, March 21, 2007 3:01:24 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
.NET | ASP.NET | Event | Training
# Thursday, February 15, 2007

On Tuesday night of this week I had the opportunity to present to the San Luis Obispo .NET User Group. This is a new .NET focused group in the central coast of California an aria I have only driven through at break neck speeds to get to San Francisco or back home so I was looking forward to seeing a little of the place.

The group is run by Robert Hope who has done a great job of building a community of people who are interested in .NET. The people at the meeting were quite interesting and had some great questions. I presented on the ASP.NET 2.0 AJAX Extensions and ASP.NET AJAX Control Toolkit. This was the first time I presented anything about ajax and I was impressed how well received it was received. For the demo pillaged the great content that Steve Marx did in blog post Bad AJAX jokes, good AJAX sample I also had a slide deck but it was not much if you want to see it you can get a pdf of it here.

As an aside after the meeting some of us when out for a drink and they suggested a place downtown called Mothers Tavern but a Linsey Lohan movie was being shot downtown and Mothers was rented out for crew catering. But it was quite surreal seeing how many people were just trying to get a look at Linsey Lohan... If you don't offend easily then checkout what Foamy has to say about celebrates. Yes I feel the same way he dose!

Thursday, February 15, 2007 9:00:40 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
.NET | Ajax | ASP.NET | User Group
# Friday, December 15, 2006

http://msdn.microsoft.com/vstudio/VS2005SP1

Go get it! Lots of fixes and make VS 2005 work well on Vista (still not 100% but close).

Technorati tags: , ,
Friday, December 15, 2006 5:24:38 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
.NET | ASP.NET | C# | General | VB.NET
# Wednesday, September 20, 2006

I just got asked a question that comes up quite often when someone starts working with ASP.NET...

 The question was:

"I have an asp.net 2.0 page which all I’m trying to do is populate a label control with the selected text of a dropdownlist control, whenever a button control is clicked.  It always puts the name of the first item in the dropdownlist in the label control, no matter what item I have selected.  Any ideas?"

The Code was:

Partial Class _Default
    Inherits System.Web.UI.Page

    Protected Sub Page_Load(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles Me.Load With Me.DropDownList1.Items .Clear() .Add("Item 1") .Add("Item 2") .Add("Item 3") .Add("Item 4") End With End Sub Protected Sub Button1_Click(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = DropDownList1.SelectedItem.Text End Sub End Class

The issue is that the Page_Load event will fire each time the page gets rendered, this includes on the post back from the button click so the list will be cleared then repopulated and the first item will always be selected once the Button1_Click event fires.

There is a good MSDN article for this ASP.NET Page Life Cycle Overview that covers this and cool diagram by Leon Andrianarivony ASP.NET Page Lifecycle diagram.

To solve this issue all that you need to do is use the Page.IsPostBack property in the Page_Load event like:

    Protected Sub Page_Load(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles Me.Load If Not Page.IsPostBack Then With Me.DropDownList1.Items .Clear() .Add("Item 1") .Add("Item 2") .Add("Item 3") .Add("Item 4") End With End If End Sub

This assumes ViewState is on...

Technorati tags: , ,
Wednesday, September 20, 2006 5:37:08 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
.NET | ASP.NET | VB.NET
# Monday, September 11, 2006

Scott Guthrie has posted details of the changes coming to Atlas!

"Atlas" 1.0 Naming and Roadmap

Monday, September 11, 2006 10:33:14 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
.NET | ASP.NET
# Wednesday, August 09, 2006

Some great events are planned for SoCal... 

.NET Masters Series event Saturday, August 19, 2006

Link to So Cal .Net Tech Summit Saturday, September 23

More .NET love can then I can stand! What a great community we have in SoCal!

Wednesday, August 09, 2006 2:12:03 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
.NET | ASP.NET | C# | General | VB.NET
# Wednesday, June 21, 2006

WOW I went to a MSDN event today… all I can say is wow if you have not been to a MSDN event you need to experience this type of event. You can see all kinds of geek information all in a movie theater. And yes if you try hard you can sneak in to a free movie after the event .

At the event today and I am sure at the event coming up this Thursday in Garden Grove for information about user groups and events so here is a list of local resources:

SoCal Resources:
MSDN Flash (http://msdn.microsoft.com/flash)
SoCal .NET Events (http://www.socalnetevents.org)
List of SoCal User Groups (http://www.socalnetevents.org/Default.aspx?tabid=61) I know bad back ground but the list is good!

San Diego User Groups:
San Diego .NET Developers Group (http://www.sddotnetdg.org)
San Diego .NET User Group (http://www.sandiegodotnet.com)

I will have a section of this site soon that list all the groups that I can find\know about so if you know if a group please let me know.

Wednesday, June 21, 2006 6:11:03 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
.NET | ASP.NET | C# | CodeCamp | General | VB.NET
# Wednesday, April 12, 2006

Microsoft recently released more controls that can work with ATLAS "Atlas" Control Toolkit you can see all the new components demoed at the samples page.

Wednesday, April 12, 2006 10:45:51 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
.NET | ASP.NET
Archive
<October 2008>
SunMonTueWedThuFriSat
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2008
Woody Pewitt
Sign In
View blog authority
Add to Technorati Favorites


I know it's sad...
Statistics
Total Posts: 423
This Year: 47
This Month: 1
This Week: 1
Comments: 127
<%
Themes
Pick a theme:
%>
All Content © 2008, Woody Pewitt
DasBlog theme 'Business' created by Christoph De Baene (delarou)