FineUI/FineUI.Examples/usercontrol/userinfo2.aspx.cs

32 lines
708 B
C#
Raw Normal View History

2015-05-19 14:45:47 +08:00
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);
}
}
2013-11-01 14:13:51 +08:00
}