// ------------------------------------------------------------------------------------------ // Copyright AspDotNetStorefront.com, 1995-2009. All Rights Reserved. // http://www.aspdotnetstorefront.com // For details on this license please visit the product homepage at the URL above. // THE ABOVE NOTICE MUST REMAIN INTACT. // ------------------------------------------------------------------------------------------ using System; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Text; using System.Collections; using System.Globalization; using AspDotNetStorefrontCore; using System.Data.Sql; using System.Data.SqlClient; namespace AspDotNetStorefront { /// /// Summary description for checkoutshipping. /// public partial class test : SkinBase { protected void Page_Load(object sender, System.EventArgs e) { Response.CacheControl = "private"; Response.Expires = -1; Response.AddHeader("pragma", "no-cache"); ErrorMsgLabel.Text = "Hello"; pnlErrorMsg.Visible = true; } } }