Home

Google Chrome Browser

making the web faster, safer, and easier

Main menu

  • Home
  • Chromebook
  • Chrome OS
  • Android
  • Books
  • Releases
    • Stable
    • Beta channel
    • Dev channel
  • Downloads
  • Videos
    • Top Rated
    • Most Viewed
    • Most Commented
  • Articles
    • Top Rated
    • Most Viewed
    • Most Commented
  • About Us
Home

Add to Technorati Favorites

Subscribe to Google Chrome Browser by e-mail

Delivered by FeedBurner

Syndicate

Syndicate content

User login

Login/Register
What is OpenID?
  • Log in using OpenID
  • Cancel OpenID login
  • Create new account
  • Request new password

Tag Cloud

Beta updates browser browsers browsing chrome chromebook chrome extensions Chrome OS chromium Dev updates Downloads extensions feed Firefox Google googlechrome google chrome Internet Explorer Linux open source opera release security Stable updates TC video web web browser web browsers windows
more tags

Twitter Updates

Follow us on Twitter @ChromeBrowser


    ASP.NET MVC

    Building Web Apps with ASP.NET Jump Start - 8 Hours of FREE Training Videos

    Submitted by admin on Thu, 02/28/2013 - 17:55
    • ASP.NET
    • ASP.NET MVC
    • ASP.NET Web API
    • feed
    • google chrome
    • Screencasts
    • SignalR
    • Speaking


    imageLast week Jon Galloway, Damian Edwards and myself (with a raspy throat) were up in Redmond at the Microsoft Campus filming at Microsoft Virtual Academy.

    They've got a whole studio there so we spent the whole day presenting LIVE. There were several thousand folks watching live and interacting with

    • Add new comment
    • Read more
    • 64 reads
    • Feed: Scott Hanselman's Computer Zen
    • Original article

    Integrating Mozilla Persona with ASP.NET

    Submitted by admin on Thu, 01/24/2013 - 18:56
    • ASP.NET
    • ASP.NET MVC
    • ASP.NET Web API
    • feed
    • google chrome
    • open source

    imageASP.NET and Web Tools 2012.2 is coming soon, but one of the features of ASP.NET that you can use TODAY is support for Google, Twitter, Microsoft and Facebook logins out of the box with ASP.NET templates. I show how OAuth in ASP.NET works in this 5 minute video. We are also continuing to look at ways to make membership easier in coming versions of ASP.NET like including things like this out of the box.

    • Add new comment
    • Read more
    • 196 reads
    • Feed: Scott Hanselman's Computer Zen
    • Original article

    ASP.NET and Web Tools 2012.2 (Release Candidate)

    Submitted by admin on Thu, 12/13/2012 - 15:06
    • ASP.NET
    • ASP.NET Ajax
    • ASP.NET Dynamic Data
    • ASP.NET MVC
    • ASP.NET Web API
    • feed
    • google chrome

    All the parts of ASP.NET, all the subsystems are all part of the larger ASP.NET communityI've talked before in presentations that the ASP.NET and Web Tools team has been slowly externalizing pieces of ASP.NET. You've seen it in many pieces of the ASP.NET runtime moving into NuGet while also being open sourced, and you've seen it as we've moved big chunks of the "tooling" (that means the menus and dialogs you interact within Visual Studio when using ASP.NET) into external installers.

    • Add new comment
    • Read more
    • 185 reads
    • Feed: Scott Hanselman's Computer Zen
    • Original article

    Making a switchable Desktop and Mobile site with ASP.NET MVC 4 and jQuery Mobile

    Submitted by admin on Mon, 10/01/2012 - 10:17
    • ASP.NET
    • ASP.NET MVC
    • feed
    • google chrome
    • javascript
    • mobile

    I really enjoy working on and thinking about mobile websites. There's something about making an experience great on a pocket supercomputer phone that is so much more satisfying than a desktop. I actually got this blog looking nice on mobile devices back in 2006 when nobody was mobile except doctors and, well, all of us techies here on the blogs.

    • Add new comment
    • Read more
    • 524 reads
    • Feed: Scott Hanselman's Computer Zen
    • Original article

    WebMatrix 2 - Front End Web Developers take note (ASP.NET, PHP, node.js and more)

    Submitted by admin on Tue, 09/18/2012 - 20:13
    • ASP.NET
    • ASP.NET MVC
    • feed
    • google chrome
    • mobile
    • open source
    • WebMatrix

    Did you notice the release of WebMatrix 2? WebMatrix is a free, lightweight web development tool introduced in 2010. It's focus is on simplifying the web development experience for ASP.NET and PHP, and more recently node. Rob Conery actually turned me onto WebMatrix and we use it for the This Developer's Life Podcast website. I recommend it for students, designers, and web pros that either don't need or don't want the whole Visual Studio experience. It's also a nice companion to Sublime Text 2. There's even Git extensions, LESS, easy deployment and more for the front end developer.

    • Add new comment
    • Read more
    • 354 reads
    • Feed: Scott Hanselman's Computer Zen
    • Original article

    ASP.NET Web Forms DynamicData FieldTemplates for DbGeography Spatial Types (plus Model Binders and Friendly URLs)

    Submitted by admin on Mon, 09/10/2012 - 20:12
    • ASP.NET
    • ASP.NET MVC
    • feed
    • google chrome
    • javascript
    • open source
    • VS2012

    Did you enjoy my recent post on ASP.NET MVC DisplayTemplate and EditorTemplates for Entity Framework DbGeography Spatial Types and it's associated GIANT URL?

    Modeling Binding and EditorTemplates...for ASP.NET Web Forms?

    DisplayTemplates and EditorTemplates are a great way in ASP.NET MVC to keep things DRY (Don't Repeat Yourself.) That means I can just write EditorFor() calls like this:

    @Html.EditorFor(model => model.Location)   

    See how I didn't say "TextBoxFor" or "MapFor"? You say EditorFor and it makes the right choice. If the type is called DbGeography then it will look for a Editor Template at ~/Shared/EditorTemplates/DbGeography.cshtml. It's a nice feature of ASP.NET MVC that folks don't use enough.

    • Add new comment
    • Read more
    • 296 reads
    • Feed: Scott Hanselman's Computer Zen
    • Original article

    FormsAuthentication on ASP.NET sites with the Google Chrome Browser on iOS

    Submitted by admin on Thu, 07/05/2012 - 17:30
    • ASP.NET
    • ASP.NET MVC
    • bugs
    • feed
    • google chrome

    A few people have said that they have noticed problems the new iPhone/iPad Google Chrome apps as well as trouble with applications that use hosted Safari inside of UIWebView (which is what Chrome is) or apps that host a website in PhoneGap. If you're using FormsAuthentication (in WebForms or MVC, doesn't matter) then Google Chrome for iOS might switch FormsAuth to Cookieless mode, which sucks for everyone.

    This has been fixed in .NET 4.5 and you won't see this problem if you have .NET 4.5 installed, even if you're running a .NET 4 application. For example, Bing.com is running .NET 4 applications under .NET 4.5 RC and wouldn't see this. If you install 4.5 (now or later) ASP.NET will always assume clients support cookies.

    If you want to tell ASP.NET 4.0 or earlier that EVERY browser supports cookies for FormsAuth you can do ONE of these things:

    1. Change Generic.Browser for your app (or machine)

    Make a file called generic.browser in a folder called App_Browsers and put this in it:

    • Add new comment
    • Read more
    • 259 reads
    • Feed: Scott Hanselman's Computer Zen
    • Original article

    Extending the Visual Studio 11 Web Browser Chooser and Browse With Menu to include Developer Profiles

    Submitted by admin on Wed, 03/21/2012 - 16:53
    • ASP.NET
    • ASP.NET MVC
    • feed
    • google chrome

    I talked about some new features that have snuck made their way into the free version of Visual Studio for Web. One of the more useful ones is the Browser Chooser that allows you to quickly launch debug sessions with different browsers from within VS. I've actually been pushing on this for about 18 months, and even blogged about it in August of 2010 in "how to change the default browser in Visual Studio programmatically with PowerShell and possibly poke yourself in the eye."

    In Visual Studio 11 Beta you get a nice dropdown with all the browsers (plus the new Page Inspector).

    Browser Switcher built into the toolbar

    However, I got a good comment from blog reader Abhijit who said:

    • Add new comment
    • Read more
    • 605 reads
    • Feed: Scott Hanselman's Computer Zen
    • Original article

    IE9, Site Specific Browsers, and adding your own Jump List Items to Pinned Tabs

    Submitted by admin on Wed, 09/15/2010 - 14:18
    • ASP.NET
    • ASP.NET MVC
    • feed
    • google chrome

    Site Specific Browsers aren't a really new idea. In 2005 there was an app called Bubbles I ran for a while that would let you run a website with minimal "browser chrome." Mozilla Prism (né WebRunner) is a Firefox add-in that does a similar thing. Google Chrome includes the idea of Application Shortcuts. The idea of all this is that some web apps are really applications and you think about them as applications. For me, I think of Gmail and Facebook and Twitter and Basecamp as applications not necessarily as browser tabs. The notion of Site-Specific Browsers is definitely arriving.

    Internet Explorer 9 Beta (IE9) is out now and includes a featured called "Site Pinning" which is a effectively Site Specific Browsers. It's integrated nicely with Windows 7. It's easy for you as a developer or site owner to add these features to your site.

    Here's the basic idea from a markup perspective from a Channel 9 example:

    • Add new comment
    • Read more
    • 751 reads
    • Feed: Scott Hanselman's Computer Zen
    • Original article

    How to change the default browser in Visual Studio programmatically with PowerShell and possibly poke yourself in the eye

    Submitted by admin on Sat, 08/21/2010 - 05:53
    • ASP.NET
    • ASP.NET MVC
    • feed
    • google chrome
    • PowerShell
    • VS2010

    I've heard and seen lots of complaints about how it's hard to set the default browser that Visual Studio launches when you launch a debug session for a website.

    Step 0 - Adequate

    Folks spend time hunting around the Tools|Options dialog in Visual Studio looking for setting. They eventually realize it's not in there at all, but instead you have to right-click on an ASPX page within a Web Project and click "Browse With..."

    Right Click | Browse With

    From this dialog you can click Set Default, which is totally obvious, right my daimies? Um, no. This doesn't work for ASP.NET MVC people who use other view engines and might not even have a .ASPX file in their solution. Plus, it's slow and irritating. Sa da tay.

    • Add new comment
    • Read more
    • 2077 reads
    • Feed: Scott Hanselman's Computer Zen
    • Original article

    The Weekly Source Code 56 - Visual Studio 2010 and .NET Framework 4 Training Kit - Code Contracts, Parallel Framework and COM Interop

    Submitted by admin on Thu, 08/12/2010 - 04:07
    • ASP.NET
    • ASP.NET Ajax
    • ASP.NET Dynamic Data
    • ASP.NET MVC
    • BCL
    • feed
    • google chrome
    • Learning .NET
    • LINQ
    • OData
    • open source
    • Programming
    • VB
    • Web Services
    • win7

    Do you like a big pile of source code? Well, there is an imperial buttload of source in the Visual Studio 2010 and .NET Framework 4 Training Kit. It's actually a 178 meg download, which is insane. Perhaps start your download now and get it in the morning when you get up. It's extremely well put together and I say Kudos to the folks that did it. They are better people than I.

    I like to explore it while watching TV myself and found myself looking through tonight. I checked my blog and while I thought I'd shared this with you before, Dear Reader, I hadn't. My bad, because it's pure gold. With C# and VB, natch.

    Here's an outline of what's inside. I've heard of folks setting up lunch-time study groups and going through each section.

    • Add new comment
    • Read more
    • 530 reads
    • Feed: Scott Hanselman's Computer Zen
    • Original article

    Google Chrome Browser is a community site for users and developers of the Google Chrome browser.
    Google™ is a Trademark of Google Inc. All other company and product names may be trademarks of the respective companies with which they are associated.
    Google Chrome Browser site is not affiliated with or sponsored by Google Inc.
    Google Chrome Browser site is built on the Drupal open source content management system.