Posts Tagged ‘visual studio’

Sorting the ListView in ASP.NET

Are you confused about how to implement sorting in the new ListView control in ASP.NET 3.5?  Join me as I show you in this step by step video showing you exactly how to sort a ListView, even when it isn’t in gridview mode.

Read the rest of this entry »

Republished by Blog Post Promoter

Host jQuery at Google (with Intellisense support)

tp_vol3_007 While reviewing my RSS feed this morning, I found this article:

3 reasons why you should let Google host jQuery for you | Encosia

I had no idea!

The three reasons are:

  1. Decreased Latency
    Google will serve the data from the closest server
  2. Increased Parallelism
    More threads are available to download content specific to your application instead of downloading this common library.
  3. Better caching
    They may already have the library on their computer.

Here is the code you should be using to include jQuery in your application to use the Content Delivery Network at Google:

    <script type="text/javascript"
    src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js">
    </script>

The one issue you may have to deal with is that if you are using the intellisense files for Visual Studio, you will need to find some alternate method.  Here’s one:

Read the rest of this entry »

Republished by Blog Post Promoter

Multi-Targeting

One of the big new features that have been advertised with Visual Studio 2008 is this thing called Multi-Targeting.  This lets you write code for .NET 2.0 (or 3.0) even though 2008 is written to work with .NET 3.5.  So, the theory is, you can still work on existing projects targeted for .NET 2.0.  Does this work?  Watch the video to find out.

del.icio.us Tags: ,

  

Technorati Tags: ,

Republished by Blog Post Promoter

DotNetNuke Modules – Install DNN into VS 2008

Today, we will install DotNetNuke into Visual Studio so that we can create our first module. So fire up Visual Studio, and let’s get going.

Read the rest of this entry »

Republished by Blog Post Promoter

The Project Location is not Trusted

image

This one has been bothering me for several weeks, so I decided to research the problem and finally fix it.

The problem started when I downloaded a project from the web to start working on it.  This same project worked previously, the zip was just an update.

Here’s what I found:

Read the rest of this entry »

Bear