Upcoming intro to ASP.NET 2.0 Webcast Series

Onion Blog

Syndication

I'll be presenting another free series of webcasts for MSDN beginning on March 7, 2006. This will be a 4-part introduction to ASP.NET 2.0 offered once in VB.NET and once in C#, each over a period of 4 days. This is part of a larger effort to introduce developers using Cold Fusion, JSP, or PHP to ASP.NET 2.0 with customized tracks for each developer. Be sure to let anyone that uses these technologies know about this opportunity!


Posted Feb 21 2006, 06:01 AM by fritz-onion
Filed under:

Comments

Sara wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-07-2006 9:57 AM
Looking forward to the presentation.
faheem wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-07-2006 10:06 AM
eeeeeeeeeeeeee
Fergus Fung wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-08-2006 12:03 PM
I missed the first webcast of this series (ASP.NET 2.0 Fundamentals using C#). The review screen does not give us a way to get the pdf file of the webcast. Can you send me the link? Thanks.
simon wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-09-2006 9:58 AM
what is the ondemand webcast address? I want to watch them again and also pass it to colleagues. for some reason I didn't get any email from microsoft posting the on demand webcast url.

thanks,
Justin wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-09-2006 10:45 AM
Where do you post the material(Powerpoint/Demo code) of your ASP.NET 2.0 webcasts?
Steven wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-09-2006 11:42 AM
Hi Fritz,
Your webcast was great today!
I really enjoy listening to someone knowledgeable as you. Also how do you create the code that automatically get created below?
Keep up the good work!
Fritz Onion wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-10-2006 4:59 AM
Simon - here is what Microsoft has said about hosting the webcasts this week:

We are targeting to put the recordings on www.microsoft.com/webcasts in April sometime, for this month they will only be available on the two ASP .NET campaign sites (http://www.learn2asp.net/Campaign.aspx and http://www.thedifferenceisobviousvb05.com/Campaign.aspx )

Justin - All of my webcast materials including demos, slides, and labs are available at http://pluralsight.com/fritz/webcasts.aspx

Steven - glad to hear you're enjoying the webcasts! The image below is a captcha image, which you can read more about at http://www.captcha.net/ .
Jason wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-10-2006 1:28 PM
That was a great series Fritz. I saw all 4 and you did a nice job.
Monique wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-12-2006 1:25 PM
I went through all for and loved it.

I have a question I forgot to ask.

I'm doing a help system that is both on the website and the client application.

I'm using HTML Help Workshop for the client side help helps.

I'd like to use asp to perform some programming functioning to the help system that is role-based.

How do I get the rendered htm files individually and then used them as a basis for the client side of the help system?

Say I have developer and end users and some of the information intersects, but say I'm doing a glossary and do not want the developer terms it it.

Is there a tool that you know of that will grab the redenered html so that I can then use it both online and with the client, which I'm using clickonce to keep up to date?

Fritz Onion wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-13-2006 12:13 PM
Monique - I don't know of any tool, but it should be easy enough to write one. You can extract HTML from an endpoint with the following C# code:

string url = "http://pluralsight.com";
string html;

WebRequest req = WebRequest.Create(url);
WebResponse resp = req.GetResponse();
using (StreamReader rd =
new StreamReader(resp.GetResponseStream()))
{
html = rd.ReadToEnd();
resp.Close();
}

// html has response now
Jason wrote Lab01 DB Question
on 03-21-2006 3:08 PM
Hi Fritz, thanks for your webcasts! I watched quite a few, and I must say your 4 intro to ASP.NET webcasts were the best of the bunch. Good flow, good detail, good info. So thanks!

I was trying to walk thru Lab01 and ran the SQL scripts to install the moviereviews db, but I get an error and was wondering if you could help me get past that hurdle. Here is the error code:

Msg 15401, Level 16, State 1, Line 1
Windows NT user or group 'JASONG\SQLEXPRESS\ASPNET' not found. Check the name again.

Thanks!
Fritz Onion wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-21-2006 3:42 PM
You can safely ignore that message - the script grants access to the ASPNET account to let ASP.NET communicate to SQL Server, but if you are using SQL Express, this is unnecessary.
Clay McKinney wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 03-23-2006 4:55 AM
I'm catching up on these webcasts and finding them extremely helpful. Thank you. My favorite new word is "Tildewhack." I also enjoy that you pronounce URL as "Earl." I'm campaigning to change the standard pronunciation of SQL to "Squirrel." I hope you will join me in this important effort.
Coz wrote Movie Site Files
on 03-23-2006 9:16 PM
I didn't see a download for the Movie site mentioned in the 1st webcast. Is there a download that contains the entire site or is it built using pieces from the labs?
I look at the following URL:
http://pluralsite.com/fritz/webcasts.aspx
Thanks
Fritz Onion wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 04-04-2006 5:23 AM
The movie review website is in the first set of demos (http://www.pluralsight.com/fritz/demos/IntroAspDotnet2_03_07_2006.zip).
-Fritz
Grove wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 04-14-2006 7:24 AM
Hi Fritz,
Great Stuff! I just found out about it today and am checking out all the movies. I was wondering if you have the a Movie review site code in VB.net. I downloaded the EARL (URL) above but it was in C#. Thanks for everything.
~Grove
Fritz Onion wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 04-14-2006 7:28 AM
Grove - sure, the URL with all of my webcast content is:
http://pluralsight.com/fritz/webcasts.aspx

and the specific URL you're looking for with the movie review site in vb.net is:
http://www.pluralsight.com/fritz/demos/IntroAspDotnet2vb_03_07_2006.zip

-Fritz
Grove wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 04-14-2006 7:29 AM
Wow! That was quick. Thanx so much. It's guys like you that make the web a great place!!
~Grove
Tom wrote Live movie review demo?
on 04-05-2007 7:01 AM
Is there a live version of the movie review site online anywhere?

thanks
Fritz Onion wrote re: Upcoming intro to ASP.NET 2.0 Webcast Series
on 04-09-2007 8:06 AM
Tom - no, there is no hosted version of the site online, sorry.

Adam wrote Movie Reviews Virtual Lab?
on 04-18-2007 12:24 PM
I wanted to register for the Movie Reviews virtual lab via Microsoft, but it says registration is now closed:

http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032286910&EventCategory=3&culture=en-US&CountryCode=US

Is there a webcast or virtual lab for the movie reviews page anywhere else on the web? Thanks.

Add a Comment

(required)  
(optional)
(required)  
Remember Me?