protected void uxSubmit_Click(object sender, EventArgs e)
{
try
{
Ektron.Cms.API.User.User userAPI = new Ektron.Cms.API.User.User();
Ektron.Cms.UserData[] userList = userAPI.GetAllUserByCustomProperty(Ektron.Cms.Common.EkEnumeration.ObjectPropertyValueTypes.Numeric, uxUserProperty.SelectedValue);
List UserList = userList.ToList();
uxUserlistView.Visible = true;
uxUserlistView.DataSource = UserList;
uxUserlistView.DataBind();
}
catch (Exception ex)
{
}
}
UserManager.GetList throws Must declare the scalar variable "@p1"
- Updated
Please sign in to leave a comment.