Posts
Showing posts with the label Create Excel
Create excel,Create CSV,pdf,xml file,Validate Email and Phone using Regex in coldfusion
- Get link
- X
- Other Apps
Some tiny works in coldfusion for new programmers like create excel, pdf, and use of cfsavecontent,make first letter capital,Validate EmailID and Phone using regex etc. <cfoutput> <!---Start : Make first letter capital of a name---> <cfset UserName = "pintu"> #rereplace(UserName, '^(\w)(.*)', '\u\1\2')# <!---End : Make first letter capital of a name---> <!---Start: Create Excel File---> <cfsetting enablecfoutputonly="Yes"> <cfcontent type="application/msexcel"> <cfheader name="Content-Disposition" value="filename=FileName.xls"> <!---Excel File Content---> <table border="0"> <tr><td>Name</td><td>Marks</td...