using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using MusicJetInstallation.cz.musicjetWEB.ws; namespace MusicJetInstallation { public partial class unreg : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } public bool unsetAdvertisement(string jmeno) { MusicjetRegistrationWEB ws = new MusicjetRegistrationWEB(); int i = ws.SetCanAdvertise(jmeno, false); return (i == 1); } } }