Ejemplo n.º 1
0
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            context.Response.Cache.SetNoStore();
            int non = 0;

            try
            {
                string ID = context.Request.QueryString["ID"];
                WebBLL.UpdatePoll(new Guid(ID));
                non = 1;
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                context.Response.Write(non);
                context.Response.End();
            }
        }