FineUI/FineUI_v6/FineUI.Examples/form/layout_checkout.aspx.cs

25 lines
654 B
C#
Raw Permalink Normal View History

2017-09-05 11:30:31 +08:00
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUI.Examples.form
{
public partial class layout_checkout : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void cbxSameAsContactAddress_CheckedChanged(object sender, CheckedEventArgs e)
{
tbxBillingAddress.Enabled = !e.Checked;
tbxBillingProvince.Enabled = !e.Checked;
tbxBillingCity.Enabled = !e.Checked;
tbxBillingPostCode.Enabled = !e.Checked;
}
}
}