Click here to Skip to main content
15,895,142 members
Articles / Web Development / ASP.NET

Hosting IFRAMEs using the JQuery UI Tabs plug-in - Part 1

Rate me:
Please Sign up or sign in to vote.
4.89/5 (20 votes)
23 Dec 2009CPOL9 min read 95.5K   1.9K   73  
Using JQuery UI Tabs to host web pages via IFRAMEs.
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.50727</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{D4B1BA65-D682-45A6-8B25-482E4CC5314A}</ProjectGuid>
    <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>HomeSite</RootNamespace>
    <AssemblyName>HomeSite</AssemblyName>
    <FileUpgradeFlags>
    </FileUpgradeFlags>
    <OldToolsVersion>2.0</OldToolsVersion>
    <UpgradeBackupLocation>
    </UpgradeBackupLocation>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <RunCodeAnalysis>false</RunCodeAnalysis>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Data" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Web" />
    <Reference Include="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <Reference Include="System.Xml" />
    <Reference Include="System.Configuration" />
    <Reference Include="System.Web.Services" />
    <Reference Include="System.EnterpriseServices" />
    <Reference Include="System.Web.Mobile" />
  </ItemGroup>
  <ItemGroup>
    <Content Include="CSS\Images\ui-bg_highlight-soft_75_cccccc_1x100.png" />
    <Content Include="CSS\jquery-ui-1.7.2.custom.css" />
    <Content Include="CSS\Main.css" />
    <Content Include="Default.aspx" />
    <Content Include="CSS\Images\ui-bg_flat_30_cccccc_40x100.png" />
    <Content Include="CSS\Images\ui-bg_flat_50_5c5c5c_40x100.png" />
    <Content Include="CSS\Images\ui-bg_glass_40_ffc73d_1x400.png" />
    <Content Include="CSS\Images\ui-bg_highlight-hard_20_05094d_1x100.png" />
    <Content Include="CSS\Images\ui-bg_highlight-soft_33_050b66_1x100.png" />
    <Content Include="CSS\Images\ui-bg_highlight-soft_35_222222_1x100.png" />
    <Content Include="CSS\Images\ui-bg_highlight-soft_44_444444_1x100.png" />
    <Content Include="CSS\Images\ui-bg_highlight-soft_80_eeeeee_1x100.png" />
    <Content Include="CSS\Images\ui-bg_loop_25_000000_21x21.png" />
    <Content Include="CSS\Images\ui-icons_222222_256x240.png" />
    <Content Include="CSS\Images\ui-icons_326402_256x240.png" />
    <Content Include="CSS\Images\ui-icons_a83300_256x240.png" />
    <Content Include="CSS\Images\ui-icons_cccccc_256x240.png" />
    <Content Include="CSS\Images\ui-icons_ffffff_256x240.png" />
    <Content Include="JavaScript\jquery-1.3.2.min.js" />
    <Content Include="JavaScript\jquery-ui-1.7.2.custom.min.js" />
    <Content Include="JavaScript\jquery.hijack.min.js" />
    <Content Include="ContentLoader.aspx" />
    <Content Include="TabConfig.xml" />
    <Content Include="Web.config" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="App_Code\TabConfiguration.cs" />
    <Compile Include="Default.aspx.cs">
      <SubType>ASPXCodeBehind</SubType>
      <DependentUpon>Default.aspx</DependentUpon>
    </Compile>
    <Compile Include="Default.aspx.designer.cs">
      <DependentUpon>Default.aspx</DependentUpon>
    </Compile>
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="ContentLoader.aspx.cs">
      <SubType>ASPXCodeBehind</SubType>
      <DependentUpon>ContentLoader.aspx</DependentUpon>
    </Compile>
    <Compile Include="ContentLoader.aspx.designer.cs">
      <DependentUpon>ContentLoader.aspx</DependentUpon>
    </Compile>
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v9.0\WebApplications\Microsoft.WebApplication.targets" Condition="" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
  <ProjectExtensions>
    <VisualStudio>
      <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
        <WebProjectProperties>
          <UseIIS>False</UseIIS>
          <AutoAssignPort>True</AutoAssignPort>
          <DevelopmentServerPort>49573</DevelopmentServerPort>
          <DevelopmentServerVPath>/</DevelopmentServerVPath>
          <IISUrl>
          </IISUrl>
          <NTLMAuthentication>False</NTLMAuthentication>
        </WebProjectProperties>
      </FlavorProperties>
    </VisualStudio>
  </ProjectExtensions>
</Project>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer Intel Corporation
United States United States
I am an Automation Engineer specializing in application and web development/support.

Comments and Discussions