How to set one DatePicker for Multiple TextField.?

I’m Trying to Create a Demo, On Register Page I have 3 TextField, From date and To Date and Date of Birth. I want to use Date Picker and Time Picker for all the textfield. I gave delegate and created a action as well, but it is Not working. How can I do this. Can… Read More How to set one DatePicker for Multiple TextField.?

How to turn the page using Itextsharp

I was able to find some examples through search. However, all of the examples used PdfReader. I am only going to use PDFWriter. Below is the code I wrote. private void CreatePdf(string strPdfPath) { FileStream fs = new FileStream(strPdfPath, FileMode.Create, FileAccess.Write, FileShare.None); Document document = new Document(PageSize.A4, 45, 45, 80, 80); PdfWriter writer = PdfWriter.GetInstance(document,… Read More How to turn the page using Itextsharp