An alternative to UBB.threads
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

33 lines
831 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Web.Core;
using FLocal.Common.dataobjects;
namespace FLocal.IISHandler.handlers.request {
class UserDataHandler : AbstractPostHandler {
protected override string templateName {
get {
return "result/SettingsSaved.xslt";
}
}
protected override XElement[] Do(WebContext context) {
User.UserData newData = new User.UserData {
location = context.httprequest.Form["location"].Trim(),
title = context.httprequest.Form["title"].Trim(),
signatureUbb = context.httprequest.Form["signature"].Trim(),
biographyUbb = context.httprequest.Form["biography"].Trim(),
};
context.account.user.UpdateData(newData);
return new XElement[0];
}
}
}