三生石上 8e116609c6 v4.2.0
2015-05-19 14:45:47 +08:00

32 lines
708 B
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace FineUI.Examples.usercontrol
{
public partial class userinfo2 : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
LoadData();
}
}
private void LoadData()
{
JObject jo = new JObject();
jo.Add("Margin", "0");
jo.Add("BoxFlex", 1);
UserInfoControl5.Properties = jo.ToString(Formatting.None);
}
}
}