Learn how 10 was made
- Posted: Mar 13, 2006 at 9:24 AM
- 117,082 Views
- 46 Comments
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Right click “Save as…”
Comments have been closed since this content was published more than 30 days ago, but if you'd like to continue the conversation,
please create a new thread in our Forums,
or
Contact Us and let us know.
Follow the Discussion
Oops, something didn't work.
What does this mean?
Following an item on Channel 9 allows you to watch for new content and comments that you are interested in. You need to be signed in to Channel 9 to use this feature.What does this mean?
Following an item on Channel 9 allows you to watch for new content and comments that you are interested in and view them all on your notifications page.sign up for email notifications?
10 seems cool. Interesting to hear from the team that built it. Nice job guys. Hey Adam, I have that same Xbox shirt.....I got it at PDC, did you get yours there?
It's awesome to see the team using .NET 2.0. Probably the best thing about 10, so far.
The download drop down is oh so sexy!
The digg part is also super super cool!
I love the team's layed back attitude and part about Quicktime was great!
Since 10 was built by the same development team that builds this site, is their anything from the 10 experiene you'd like to see in Channel 9?
I would love to see the comment while watching video feature brought over here on C9. That is a killer, killer, killer feature that made me get excited about 10. Maybe its just that I watch the videos relentlessly and keep a copy of word open while I watch but having that built into C9 would allow me to make my posting easier and I think it would allow more people to be invovled.
Lastly, any chace on both C9 and 10 you can talk to the Windows Live Mail group and integrate their spell check feature into the edit windows, having that while watching the videos would be dynamite!
Nice site. As an avid KEXP listener, I would totally reccomend you check out kexp.org as well
As for spell checking. We have that feature, but it's currently disabled. Once we get the kinks worked out, you'll see it.
Line:321
Char:5
Error: 'null' is null or not an object.
Edit: The error is related to picking an user name which is already registered.
The register box is also jumping to the side, but that might have something to do with my display setup
http://www.beginsel.com/tmp/bug.jpg
I am registered, but it was not giving a warning like 'this username is already in use' (it just gave the javascript error). Also for some reason I was also getting the error when trying to register as erik_, which is not an already existing user as far as I could see. But anyway I have a working account now =)
If you visit this page on the wiki you can find some of our concepts that didn't see the light of day.
-Jeff
I like the site so far.
Initial video image is missing, too.
Nice design, good talent working on 10.
The UI is very pretty. I have some usability problems with it though.
Movie '10' Tagline: A temptingly tasteful comedy for adults who can count.
Website '10' Tagline: A temptingly interesting website for users who browse with IE and not firefox.
Send me an email with your comments if you want.
Actually it does work with Firefox. The SignIn window is a bug I have on my list as well provifing a better loading experience for Quicktime. The issue is that the MP4s do not stream in lik the WMVs do.
I like the way user signup is nice, username password email, nice short and simple. The site overall is very nice! If only channel9 looked as clean, and supported embeded videos with firefox.
Anal correction: Their = there.
Reply during playback. Personally I wouldn't use it since I download and save all the videos anyway, but it'd be a cool feature for those of us who are terabyte-impaired.
As for the registration bug and the initial video image missing bug, I'm glad to report neither of these. Registration was a breeze and I see the video image fine. I also didn't have to download the whole thing before viewing (though I downloaded it later anyway). Then again I'm using IE6.
I'd also like to see 10 support the Passport login.
10 is pretty cool! But when can we see the code?
Already sent in my biggest issue, via the "Contact Us" tool on 10.
I think this might be the only place I'll ever see quicktime coming from download.microsoft.com. Ironic.
No reason there couldn't be a Windows Media Player plugin.
What was the ASP virtual dir thing about again? Can someone expand on that.
Issues with firefox...
You can be faster than the Live folks, i know you can do it.
Go Team10!
can we be a bit more specific?
It's often that you expand a few of the replies and you need to scroll down to see some of the answers. Currently the video player stays in at his position and while you scroll down it goes out of the visible part of the window.
The video player should follow you while scrolling down. That would be a cool features and would be very useful.
I think you should add that feature to the site!
What code do you want to see exactly? Would you like another video that's more in depth? Just a snippet in the forum? What? Tell us and we'll see what we can do. This has been our baby for the last month so of course we'd like to share.
Thanks for the faith
"What was the ASP virtual dir thing about again? Can someone expand on that."
Yes,Erik, Adam, Duncan...someone talk about this more!!!
1. What was it like to develop with this model?
A. Is debuggin crazy? or Just like normal
B. What does it look like in the IDE?
C. Could this elegently solve the old issues of displaying images that are stroed in the DB?
2. How does this effect preformance?
A. Lots 'oh hits to the DB on every page?
1. Probly not, im sure there is some caching involved
Better yet, lets get a video of a "Hello World" sample.
Thanks guys, and great job
~Joe
is something screwed up with the sever?Looks Good more Content Please
Thanks for the response! Of course Erik might not appreciate it. Now im going to have to call him up and give him the third degree, this stuff just sounds so cool.
Thanks again
Joe
Second question, why not use also Passport with it (like channel9)?
Great video, and I can't wait to see some of the code behind this.
Developing isn't really all that different, once you have it created... assuming you develop in a control-based model. Both here at C9/10 and on MSDN2 (my previous project) we wrote everything as controls, we never put any code into pages.
So, you want to create a profile editing page, you create a ProfileEdit control and stick that in a .aspx file in the project until you've figured out how (what URL pattern, etc..) you want to fit it into the larger site. Once you move it into the VPP, you can still develop and debug like normal.
In the IDE it looks just like normal, you are just making controls. You have master pages, but no aspx pages...
As far as images, it completely can handle this problem... although working out the caching settings to ensure that images are correctly cached at all the levels (proxy, browser, server) does take some thought. MSDN 2 serves all of its inline images out of a SQL 2005 db, but at the moment on 10 we put the images onto a NAS. We've thought about moving them up into the DB, at least for user-uploaded images like the avatars, but it is a low-pri task at the moment because the file system based storage isn't causing us any problems.
Finally, perf... it isn't a perf issue at all. The controls are in dlls, just like a normal asp.net application, it is just the real data that is coming from the db... and that would be exactly the same in a normal non-VPP app. I will say though that result of this style of development is that every request goes through your code... every request. So, bad code in the VPP area and in the core HTTP module could destroy your perf.
Update: if you want more info on VPP, check out this post by Mark D'Urso (dev lead on MSDN2): http://blogs.msdn.com/mdurso/archive/2006/02/06/525941.aspx
I want's to ask is there atlas update panel is also used.
I know atlas enable site not work on opera.
But this site is working on opera(I am using opera 9 beta).
Could anybodyexplain.
Signup registeration is not working
Amazing yaar..............
I like your work...........I m sure that asp.net is the future of the web...................
Im new to this community................
Remove this comment
Remove this thread
close