Posts

Showing posts from September, 2018

Bootstrap time pikcer

<!DOCTYPE html> <html> <head> <meta charset =" utf-8 " /> <title> </title> <link href =" compiled-4.5.7.min.css " rel =" stylesheet " /> <style> .timepicker.picker__input.picker__input--active { border-bottom: 1px solid #e3f2fd } </style> </head> <body> <div class =" row "> <div class =" col-md-4 "> <input placeholder =" Selected time " type =" text " id =" input_starttime " class =" form-control timepicker "> <label for =" input_starttime "> </label> </div> </div> <script type =' text/javascript ' src =' https://mdbootstrap.com/wp-content/themes/mdbootstrap4/js/compiled-4.5.7.min.js?ver=4.5.7 '> </sc...

Image Resize and stored in server folder

                                                if (fileupload.HasFile)        {            imagename = txtimgtitle.Text;            string fileName = Path.GetFileName(fileupload.PostedFile.FileName);            string strpath = System.IO.Path.GetExtension(fileupload.PostedFile.FileName);            string dt = DateTime.Now.ToString("MM_dd_yyyy_hh_mm_ss") + "_";            Stream stream = fileupload.PostedFile.InputStream;            var image = ...