├── Experiments.WIF
├── RSTSApp
│ ├── Global.asax
│ ├── About.aspx.cs
│ ├── Default.aspx.cs
│ ├── Site.Master.cs
│ ├── About.aspx
│ ├── About.aspx.designer.cs
│ ├── Default.aspx.designer.cs
│ ├── Secure
│ │ ├── Default.aspx.cs
│ │ ├── Default.aspx.designer.cs
│ │ └── Default.aspx
│ ├── Default.aspx
│ ├── FederationMetadata
│ │ └── 2007-06
│ │ │ └── FederationMetadata.xml
│ ├── Global.asax.cs
│ └── Web.Debug.config
├── WIFControlsApp
│ ├── Global.asax
│ ├── Site.Master.cs
│ ├── Default.aspx.cs
│ ├── Default.aspx.designer.cs
│ ├── Default.aspx
│ ├── FederationMetadata
│ │ └── 2007-06
│ │ │ ├── FederationMetadata.xml
│ │ │ ├── FederationMetadata.xml.backup.1
│ │ │ └── FederationMetadata.xml.backup.2
│ ├── Global.asax.cs
│ └── Web.Debug.config
├── RSTSApp_STS
│ ├── App_Code
│ │ └── Common.cs
│ ├── Default.aspx
│ └── FederationMetadata
│ │ └── 2007-06
│ │ └── FederationMetadata.xml
├── RSTSApp_STS_STS
│ ├── App_Code
│ │ └── Common.cs
│ └── Default.aspx
└── WIFControlsApp_STS
│ ├── App_Code
│ └── Common.cs
│ └── Default.aspx
├── Experiments.AspNetMvc3NewFeatures
├── packages
│ ├── NUnit.2.5.7.10213
│ │ ├── Tools
│ │ │ ├── runpnunit.bat
│ │ │ ├── agent.conf
│ │ │ ├── lib
│ │ │ │ ├── fit.dll
│ │ │ │ ├── Failure.png
│ │ │ │ ├── Ignored.png
│ │ │ │ ├── Skipped.png
│ │ │ │ ├── Success.png
│ │ │ │ ├── log4net.dll
│ │ │ │ ├── nunit.core.dll
│ │ │ │ ├── nunit.uikit.dll
│ │ │ │ ├── nunit.util.dll
│ │ │ │ ├── Inconclusive.png
│ │ │ │ ├── nunit.fixtures.dll
│ │ │ │ ├── nunit-gui-runner.dll
│ │ │ │ ├── nunit.uiexception.dll
│ │ │ │ ├── nunit-console-runner.dll
│ │ │ │ └── nunit.core.interfaces.dll
│ │ │ ├── pnunit.tests.dll
│ │ │ ├── nunit.framework.dll
│ │ │ ├── pnunit.framework.dll
│ │ │ ├── agent.log.conf
│ │ │ ├── launcher.log.conf
│ │ │ ├── NUnitTests.nunit
│ │ │ └── test.conf
│ │ ├── Logo.ico
│ │ ├── license.txt
│ │ ├── lib
│ │ │ ├── nunit.mocks.dll
│ │ │ ├── nunit.framework.dll
│ │ │ └── pnunit.framework.dll
│ │ ├── NUnit.2.5.7.10213.nupkg
│ │ └── Content
│ │ │ └── NUnitSampleTests.cs.pp
│ └── Moq.3.1.416.3
│ │ ├── lib
│ │ └── Moq.dll
│ │ └── Moq.3.1.416.3.nupkg
├── Experiments.AspNetMvc3NewFeatures.Razor
│ ├── Views
│ │ ├── _ViewStart.cshtml
│ │ ├── Shared
│ │ │ ├── Error.cshtml
│ │ │ └── _Layout.cshtml
│ │ └── Home
│ │ │ ├── About.cshtml
│ │ │ ├── FeedbackSent.cshtml
│ │ │ ├── Index.cshtml
│ │ │ └── Feedback.cshtml
│ ├── packages.config
│ ├── Global.asax
│ ├── Models
│ │ ├── ContentPage.cs
│ │ ├── ContentPagesModel.cs
│ │ └── ChartModel.cs
│ ├── Global.asax.cs
│ └── Web.Debug.config
├── External Libraries
│ ├── nunit.mocks.dll
│ └── nunit.framework.dll
├── Experiments.AspNetMvc3NewFeatures.Aspx
│ ├── Global.asax
│ ├── images
│ │ ├── watermark.png
│ │ └── bunny-peanuts.jpg
│ ├── Views
│ │ ├── Home
│ │ │ ├── About.aspx
│ │ │ └── Index.aspx
│ │ ├── Shared
│ │ │ ├── Error.aspx
│ │ │ └── ImagesMenu.ascx
│ │ └── Image
│ │ │ ├── Index.aspx
│ │ │ ├── Resized.aspx
│ │ │ ├── RotateLeft.aspx
│ │ │ ├── RotateRight.aspx
│ │ │ ├── VerticalFlip.aspx
│ │ │ ├── HorizontalFlip.aspx
│ │ │ ├── TextWatermark.aspx
│ │ │ ├── ImageWatermark.aspx
│ │ │ └── Cropped.aspx
│ ├── Models
│ │ └── ChartModel.cs
│ ├── ChartResult.cs
│ ├── WebImageResult.cs
│ ├── Controllers
│ │ ├── HomeController.cs
│ │ └── ImageWorkshopController.cs
│ ├── Global.asax.cs
│ └── Web.Debug.config
├── Experiments.AspNetMvc3NewFeatures.GlobalActionFilters
│ ├── Global.asax
│ ├── Views
│ │ ├── Home
│ │ │ ├── About.aspx
│ │ │ └── Index.aspx
│ │ └── Shared
│ │ │ ├── Error.aspx
│ │ │ └── Site.Master
│ ├── Controllers
│ │ └── HomeController.cs
│ ├── MyActionFilter.cs
│ ├── Global.asax.cs
│ ├── StopwatchAttribute.cs
│ └── Web.Debug.config
└── Experiments.AspNetMvc3NewFeatures.Aspx.Tests
│ ├── packages.config
│ └── HomeControllerTests.cs
├── Experiments.WebAppThreading
├── ClientWebMvc
│ ├── Global.asax
│ ├── Views
│ │ ├── Home
│ │ │ ├── About.aspx
│ │ │ └── Index.aspx
│ │ └── Shared
│ │ │ ├── Error.aspx
│ │ │ └── Site.Master
│ ├── Service References
│ │ └── ServiceReference1
│ │ │ └── DelayedHello.disco
│ ├── Global.asax.cs
│ └── Web.Debug.config
├── RemoteWebService
│ ├── DelayedHello.asmx
│ └── DelayedHello.asmx.cs
└── ClientWeb
│ ├── Properties
│ ├── Settings.settings
│ └── Settings.Designer.cs
│ ├── Service References
│ └── ServiceReference1
│ │ └── DelayedHello.disco
│ ├── Default.aspx
│ └── Default.aspx.designer.cs
├── Experiments.ASPNET.MVP
├── Experiments.ASPNET.MVP
│ ├── Global.asax
│ ├── About.aspx.cs
│ ├── Site.Master.cs
│ ├── About.aspx
│ ├── About.aspx.designer.cs
│ ├── Default.aspx.cs
│ ├── Default.aspx
│ ├── Default.aspx.designer.cs
│ ├── Global.asax.cs
│ └── Web.Debug.config
├── ExternalLibraries
│ ├── WebFormsMvp.dll
│ └── nunit.framework.dll
└── Experiments.APSNET.MVP.Presentation
│ ├── IDefaultView.cs
│ └── DefaultPresenter.cs
├── Experiments.CropImage
├── Experiments.CropImage
│ ├── Global.asax
│ ├── Images
│ │ ├── cropped_doggie.jpg
│ │ └── akropolis-doggie.jpg
│ ├── Site.Master.cs
│ ├── Styles
│ │ └── jquery.Jcrop.css
│ ├── Global.asax.cs
│ └── Web.Debug.config
└── Experiments.CropImage.sln
├── Experiments.ResizeImage
├── Experiment.ResizeImage
│ ├── Global.asax
│ ├── images
│ │ └── original.jpg
│ ├── Global.asax.cs
│ ├── Site.Master.cs
│ ├── Default.aspx
│ └── Web.Debug.config
└── Experiments.ResizeImage.sln
├── Experiments.jQuery
├── Experiments.jQuery.Dialogs
│ ├── Global.asax
│ ├── Styles
│ │ └── images
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_888888_256x240.png
│ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png
│ ├── About.aspx.cs
│ ├── Default.aspx.cs
│ ├── Site.Master.cs
│ ├── About.aspx
│ ├── About.aspx.designer.cs
│ ├── Default.aspx.designer.cs
│ ├── Default.aspx
│ ├── SelectTree.aspx.designer.cs
│ ├── SelectTree.aspx.cs
│ ├── Global.asax.cs
│ └── Web.Debug.config
└── Experiments.jQuery.sln
├── UML.SaveAsImage
├── UML.SaveAsImage
│ ├── Command_large.png
│ └── Command_small.png
└── UML.SaveAsImage.sln
├── Experiments.Vcard
└── MvcVcardControllerAction
│ ├── Global.asax
│ ├── Views
│ ├── Home
│ │ ├── About.aspx
│ │ └── Index.aspx
│ └── Shared
│ │ ├── Error.aspx
│ │ └── Site.Master
│ ├── Controllers
│ └── HomeController.cs
│ ├── Global.asax.cs
│ ├── VcardResult.cs
│ └── Web.Debug.config
├── Experiments.MemBus.Forms
├── External Libraries
│ ├── MemBus.dll
│ └── Microsoft.Practices.ServiceLocation.dll
└── Experiments.MemBus.Forms
│ ├── Properties
│ ├── Settings.settings
│ └── Settings.Designer.cs
│ ├── GeoLocationItem.cs
│ └── Program.cs
├── Experiments.OData
├── Experiments.OData.TwitPicClient
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── About.aspx.cs
│ ├── Site.Master.cs
│ ├── Web.config
│ ├── About.aspx
│ ├── About.aspx.designer.cs
│ ├── Service References
│ │ └── TwitpicData
│ │ │ └── Reference.datasvcmap
│ └── Web.Debug.config
└── Experiments.OData.sln
├── Experiments.AppDataLocks
├── Experiments.AppDataLocks
│ ├── Global.asax
│ ├── BusinessBase.cs
│ ├── Models
│ │ └── Product.cs
│ ├── LockItem.cs
│ ├── Views
│ │ ├── Home
│ │ │ ├── About.aspx
│ │ │ └── Index.aspx
│ │ └── Shared
│ │ │ ├── Error.aspx
│ │ │ └── Site.Master
│ ├── Global.asax.cs
│ ├── Controllers
│ │ └── HomeController.cs
│ └── Web.Debug.config
└── Experiments.AppDataLocks.sln
├── Experiments.Wif
├── _UpgradeReport_Files
│ ├── UpgradeReport_Plus.gif
│ └── UpgradeReport_Minus.gif
├── Microsoft.Samples.DPE.Identity.Controls
│ ├── icon.bmp
│ └── Content
│ │ ├── images
│ │ ├── icon.png
│ │ ├── ExpandIcon.bmp
│ │ ├── CollapseIcon.bmp
│ │ └── cornerroundedtransp.gif
│ │ └── scripts
│ │ └── SecurityTokenVisualizer.js
├── Backup
│ ├── Microsoft.Samples.DPE.Identity.Controls
│ │ ├── icon.bmp
│ │ └── Content
│ │ │ ├── images
│ │ │ ├── icon.png
│ │ │ ├── CollapseIcon.bmp
│ │ │ ├── ExpandIcon.bmp
│ │ │ └── cornerroundedtransp.gif
│ │ │ └── scripts
│ │ │ └── SecurityTokenVisualizer.js
│ └── SecurityTokenVisualizerControl.sln
├── WIFControlsApp
│ └── Secure
│ │ ├── Default.aspx.cs
│ │ ├── Token.aspx.cs
│ │ ├── Default.aspx
│ │ ├── Default.aspx.designer.cs
│ │ ├── Token.aspx
│ │ └── Token.aspx.designer.cs
├── CustomDictionary.xml
└── SecurityTokenVisualizerControl.sln
├── Experiments.ChartControlInMvc
├── Experiments.ChartControlInMvc
│ ├── Global.asax
│ ├── IReportControl.cs
│ ├── Views
│ │ ├── Shared
│ │ │ ├── Error.aspx
│ │ │ └── Site.Master
│ │ └── Home
│ │ │ └── Index.aspx
│ ├── ChartLoader.cs
│ ├── Reports
│ │ ├── PriceEnquiriesPerMonth.ascx.cs
│ │ └── PriceEnquiriesPerMonth.ascx.designer.cs
│ ├── Global.asax.cs
│ ├── Controllers
│ │ └── HomeController.cs
│ └── Web.Debug.config
└── Experiments.ChartControlInMvc.sln
├── Experiments.MobileWeb
├── Experiments.MobileWeb.JqueryMobile
│ ├── Global.asax
│ ├── img
│ │ ├── amstel-small.png
│ │ └── heineken-small.png
│ ├── Views
│ │ ├── Shared
│ │ │ ├── Error.aspx
│ │ │ └── Site.Master
│ │ └── Home
│ │ │ ├── About.aspx
│ │ │ ├── Index.aspx
│ │ │ ├── Amstel.aspx
│ │ │ └── Heineken.aspx
│ ├── Controllers
│ │ └── HomeController.cs
│ ├── Global.asax.cs
│ └── Web.Debug.config
└── Experiments.MobileWeb.sln
├── Experiments.MeasuringTools
├── Experiments.MeasuringTools
│ ├── IScenario.cs
│ ├── IDatabaseCommand.cs
│ ├── ICommand.cs
│ ├── UnitOfWork.cs
│ └── TimerBasedUnitOfWork.cs
└── Experiments.MeasuringTools.sln
├── Experiments.Object2ObjectMapper
├── Experiments.Object2ObjectMapper.ConsoleTests
│ └── Program.cs
└── Experiments.Object2ObjectMapper
│ ├── PropertyMap.cs
│ └── ReflectionBasedMapper.cs
├── Experiments.LinqPLinqPerformance
├── Experiments.LinqPLinqPerformance
│ ├── PotentialPrime.cs
│ └── Program.cs
└── Experiments.LinqPLinqPerformance.sln
├── .gitignore
├── Experiments.SongRequestWorkflow
├── Experiment.SongRequestWorkflow
│ ├── PlaylistClient.cs
│ └── Web.config
└── Experiment.SongRequestWorkflow.sln
├── Experiments.FibonacciPerformance
├── Experiments.FibonacciPerformance
│ ├── Fibonacci.cs
│ └── Program.cs
└── Experiments.FibonacciPerformance.sln
└── Experiments.MemoryMappedFiles
├── Experiments.MemoryMappedFiles.Client
└── Program.cs
└── Experiments.MemoryMappedFiles.Server
└── Program.cs
/Experiments.WIF/RSTSApp/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="RSTSApp.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/Experiments.AspNetMvc3NewFeatures/packages/NUnit.2.5.7.10213/Tools/runpnunit.bat:
--------------------------------------------------------------------------------
1 | start pnunit-agent agent.conf
2 | pnunit-launcher test.conf
--------------------------------------------------------------------------------
/Experiments.WIF/WIFControlsApp/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="WIFControlsApp.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/Experiments.AspNetMvc3NewFeatures/Experiments.AspNetMvc3NewFeatures.Razor/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
--------------------------------------------------------------------------------
/Experiments.WebAppThreading/ClientWebMvc/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="ClientWebMvc.MvcApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/Experiments.ASPNET.MVP/Experiments.ASPNET.MVP/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="Experiments.ASPNET.MVP.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/Experiments.CropImage/Experiments.CropImage/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="Experiments.CropImage.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/Experiments.ResizeImage/Experiment.ResizeImage/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="Experiments.ResizeImage.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/Experiments.WebAppThreading/RemoteWebService/DelayedHello.asmx:
--------------------------------------------------------------------------------
1 | <%@ WebService Language="C#" CodeBehind="DelayedHello.asmx.cs" Class="RemoteWebService.DelayedHello" %>
--------------------------------------------------------------------------------
/Experiments.jQuery/Experiments.jQuery.Dialogs/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="Experiments.jQuery.Dialogs.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/UML.SaveAsImage/UML.SaveAsImage/Command_large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gpeipman/Visual-Studio-Experiments/HEAD/UML.SaveAsImage/UML.SaveAsImage/Command_large.png
--------------------------------------------------------------------------------
/UML.SaveAsImage/UML.SaveAsImage/Command_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gpeipman/Visual-Studio-Experiments/HEAD/UML.SaveAsImage/UML.SaveAsImage/Command_small.png
--------------------------------------------------------------------------------
/Experiments.Vcard/MvcVcardControllerAction/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="MvcVcardControllerAction.MvcApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/Experiments.AspNetMvc3NewFeatures/packages/NUnit.2.5.7.10213/Tools/agent.conf:
--------------------------------------------------------------------------------
1 |
9 | @Model.Description 10 |
11 | -------------------------------------------------------------------------------- /Experiments.AspNetMvc3NewFeatures/Experiments.AspNetMvc3NewFeatures.Razor/Models/ContentPage.cs: -------------------------------------------------------------------------------- 1 | namespace Experiments.AspNetMvc3NewFeatures.Razor.Models 2 | { 3 | public class ContentPage 4 | { 5 | public string Title { get; set; } 6 | public string Description { get; set; } 7 | } 8 | } -------------------------------------------------------------------------------- /Experiments.LinqPLinqPerformance/Experiments.LinqPLinqPerformance/Program.cs: -------------------------------------------------------------------------------- 1 | namespace Experiments.LinqPLinqPerformance 2 | { 3 | class Program 4 | { 5 | static void Main() 6 | { 7 | var demo = new PrimeNumberDemo(); 8 | demo.ShowDemo(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Experiments.ResizeImage/Experiment.ResizeImage/Site.Master.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Experiments.ResizeImage 4 | { 5 | public partial class SiteMaster : System.Web.UI.MasterPage 6 | { 7 | protected void Page_Load(object sender, EventArgs e) 8 | { 9 | 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Experiments.OData/Experiments.OData.TwitPicClient/About.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Web.UI; 3 | 4 | namespace Experiments.OData.TwitPicClient 5 | { 6 | public partial class About : Page 7 | { 8 | protected void Page_Load(object sender, EventArgs e) 9 | { 10 | 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Experiments.MemBus.Forms/Experiments.MemBus.Forms/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 |Thank you for your feedback. We will reply to your message during next 48 hours.
11 | -------------------------------------------------------------------------------- /Experiments.ChartControlInMvc/Experiments.ChartControlInMvc/IReportControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | 4 | namespace Experiments.ChartControlInMvc 5 | { 6 | public interface IReportControl : IDisposable 7 | { 8 | void DataBind(); 9 | object DataSource { set; } 10 | void SaveChartImage(Stream stream); 11 | } 12 | } -------------------------------------------------------------------------------- /Experiments.AppDataLocks/Experiments.AppDataLocks/LockItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Application.Data.Locks.Example 4 | { 5 | public class LockItem 6 | { 7 | public Type ObjectType { get; set; } 8 | public int ObjectId { get; set; } 9 | public string SessionId { get; set; } 10 | public DateTime LockedAt { get; set; } 11 | } 12 | } -------------------------------------------------------------------------------- /Experiments.AspNetMvc3NewFeatures/Experiments.AspNetMvc3NewFeatures.Razor/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | View.Title = "Home Page"; 3 | } 4 | 5 |
7 | @*
8 | Charts area
9 | -----------
10 | 1. cached for 10 minutes by default
11 | 2. cached for 180 minutes
12 | *@
13 |
14 |
15 |
10 | Put content here. 11 |
12 |10 | Put content here. 11 |
12 |10 | Put content here. 11 |
12 |11 | Put content here. 12 |
13 |10 | Put content here. 11 |
12 |10 | Put content here. 11 |
12 |11 | Put content here. 12 |
13 |11 | Put content here. 12 |
13 |11 | This is my twitpic client example. 12 |
13 |About this page
15 |10 | To learn more about ASP.NET MVC visit http://asp.net/mvc. 11 |
12 |10 | To learn more about ASP.NET MVC visit http://asp.net/mvc. 11 |
12 |Image resized to 200x200 px
12 | 13 |10 | To learn more about ASP.NET MVC visit http://asp.net/mvc. 11 |
12 |Image rotated to left
12 | 13 |11 |
Image rotated to right
12 | 13 |Vertical flip of image
12 | 13 |Horizontal flip of image
12 | 13 |Image with text watermark.
12 | 13 |Image with image watermark
12 | 13 |
10 | <% foreach(var item in Model)
11 | {
12 | Response.Write(item);
13 | Response.Write("
");
14 | }
15 | %>
16 |
This version of image is cropped by 50px from all directions.
12 | 13 |@Html.ValidationMessage("_FORM")
11 | 12 | @using(Html.BeginForm()) { 13 || Your e-mail: | 16 |@Html.TextBox("email") | 17 |
| Subject: | 20 |@Html.TextBox("subject") | 21 |
| Body: | 24 |@Html.TextArea("body") | 25 |
10 | "
12 | alt="Enquiries during last three months"
13 | title="Enquiries during last three months"
14 | />
15 |
11 | To learn more about ASP.NET visit www.asp.net. 12 |
13 |14 | You can also find documentation on ASP.NET at MSDN. 16 |
17 |9 | To learn more about ASP.NET visit www.asp.net. 10 |
11 |12 | You can also find documentation on ASP.NET at MSDN. 14 |
15 |
15 |
" alt="Heineken" style="float:left; margin-right:5px; margin-bottom:5px;" />
13 | Heineken offers several beers under the Amstel brand.[1] Amstel Lager uses predominantly light pilsner malt,
14 | although some dark malt is also used. It is sold in 75 countries. Amstel Light is a 3.5% abv pale lager.
15 | Amstel 1870 is a slightly dark 5% abv lager.
16 |
12 |
18 |
| 10 | | <%# Eval("ClaimType") %> | 11 |
| 14 | | <%# Eval("Value") %> | 15 |
| 18 | | <%# Eval("Issuer") %> | 19 |
| 22 | | <%# Eval("OriginalIssuer") %> | 23 |
" alt="Heineken" style="float:left; margin-right:5px; margin-bottom:5px;" />
13 | Heineken is a 5% abv pale lager, made by Heineken International since 1873.
14 | It is available in a 4.3% alcohol by volume, in countries such as Ireland.
15 | It is the flagship product of the company and is made of purified water,
16 | malted barley, hops, and yeast.
17 |
13 | To learn more about ASP.NET visit www.asp.net.
14 |