Ejemplo n.º 1
0
    public void AddQuestionare(UploadedQuestionaire obj)
    {
        db = new CollegeERPDBEntities();
        db.UploadedQuestionaires.Add(obj);
        db.SaveChanges();


    }
Ejemplo n.º 2
0
    protected void submitbtn_Click(object sender, EventArgs e)
    {
        DBFunctions db   = new DBFunctions();
        string      html = System.IO.File.ReadAllText(Server.MapPath("QuestionarePage.html"));

        Byte[] bytes;
        html = html.Replace("{QuestionsList}", QuestionareContent);



        using (var ms = new MemoryStream())
        {
            var doc = new Document();
            doc = new Document(PageSize.A4, 30, 30, 30, 30);

            var writer = iTextSharp.text.pdf.PdfWriter.GetInstance(doc, ms);
            doc.Open();
            doc.NewPage();

            var example_html = html;
            using (var htmlWorker = new HTMLWorker(doc))
            {
                using (var sr = new StringReader(example_html))
                {
                    htmlWorker.Parse(sr);
                }
            }
            doc.Close();
            bytes = ms.ToArray();
            StringReader s = new StringReader(html);

            Document pdfDoc = new Document(PageSize.A4, 10f, 10f, 10f, 0f);

            PdfWriter.GetInstance(pdfDoc, new FileStream(Request.PhysicalApplicationPath + "/Admin/Questionaire/" + UserID + ".pdf", FileMode.Create));

            HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
            using (MemoryStream memoryStream = new MemoryStream())
            {
                PdfWriter writer1 = PdfWriter.GetInstance(pdfDoc, memoryStream);
                pdfDoc.Open();
                htmlparser.Parse(s);
                pdfDoc.Close();
                bytes = memoryStream.ToArray();
                memoryStream.Close();
            }
        }
        var check = db.checkquestionaireexist(UserID);

        if (check == null)
        {
            UploadedQuestionaire quesobj = new UploadedQuestionaire {
                SenderID = UserID, filepath = UserID + ".pdf", Status = 0
            };

            db.AddQuestionare(quesobj);
        }
        else
        {
            errorlbl.Visible = true;
        }
        long milliseconds = (DateTime.Now.Ticks / TimeSpan.TicksPerMillisecond) / 1000;



        HttpContext.Current.Response.Clear();
        HttpContext.Current.Response.ContentType = "application/pdf";
        HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; filename=" + UserID + "_Questions.pdf");
        HttpContext.Current.Response.Buffer = true;
        HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache);
        HttpContext.Current.Response.BinaryWrite(bytes);



        //SubmittedAssignments_tbl sasgmt = new SubmittedAssignments_tbl { StudentID = studenID, AssignmentID = id, AssginmentFile = file, Status = 0, SubmitDate = DateTime.Now.Date };
        //DBFunctions db = new DBFunctions();
        //db.submitassignment(sasgmt);

        HttpContext.Current.Response.End();
        HttpContext.Current.Response.Close();
    }
Ejemplo n.º 3
0
    protected void submitbtn_Click(object sender, EventArgs e)
    {
        DBFunctions db = new DBFunctions();
        string html = System.IO.File.ReadAllText(Server.MapPath("QuestionarePage.html"));
        Byte[] bytes;
        html = html.Replace("{QuestionsList}", QuestionareContent);



        using (var ms = new MemoryStream())
        {
            var doc = new Document();
            doc = new Document(PageSize.A4, 30, 30, 30, 30);

            var writer = iTextSharp.text.pdf.PdfWriter.GetInstance(doc, ms);
            doc.Open();
            doc.NewPage();

            var example_html = html;
            using (var htmlWorker = new HTMLWorker(doc))
            {
                using (var sr = new StringReader(example_html))
                {
                    htmlWorker.Parse(sr);
                }
            }
            doc.Close();
            bytes = ms.ToArray();
            StringReader s = new StringReader(html);

            Document pdfDoc = new Document(PageSize.A4, 10f, 10f, 10f, 0f);

            PdfWriter.GetInstance(pdfDoc, new FileStream(Request.PhysicalApplicationPath + "/Admin/Questionaire/" + UserID + ".pdf", FileMode.Create));

            HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
            using (MemoryStream memoryStream = new MemoryStream())
            {
                PdfWriter writer1 = PdfWriter.GetInstance(pdfDoc, memoryStream);
                pdfDoc.Open();
                htmlparser.Parse(s);
                pdfDoc.Close();
                bytes = memoryStream.ToArray();
                memoryStream.Close();
            }

        }
        var check = db.checkquestionaireexist(UserID);
        if (check == null)
        {
            UploadedQuestionaire quesobj = new UploadedQuestionaire { SenderID = UserID, filepath = UserID + ".pdf", Status = 0 };

            db.AddQuestionare(quesobj);
        }
        else
        {
            errorlbl.Visible = true;
        }
        long milliseconds = (DateTime.Now.Ticks / TimeSpan.TicksPerMillisecond) / 1000;




        HttpContext.Current.Response.Clear();
        HttpContext.Current.Response.ContentType = "application/pdf";
        HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; filename=" + UserID + "_Questions.pdf");
        HttpContext.Current.Response.Buffer = true;
        HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache);
        HttpContext.Current.Response.BinaryWrite(bytes);





        //SubmittedAssignments_tbl sasgmt = new SubmittedAssignments_tbl { StudentID = studenID, AssignmentID = id, AssginmentFile = file, Status = 0, SubmitDate = DateTime.Now.Date };
        //DBFunctions db = new DBFunctions();
        //db.submitassignment(sasgmt);

        HttpContext.Current.Response.End();
        HttpContext.Current.Response.Close();
       
    }