Photoshop ile gerçekçi akan su efekti yapma 13 Eylül, 2008
Posted by cemg in PHOTOSHOP.Tags: ders, efekt, filter, PHOTOSHOP, su
add a comment
Hazır yapılmış örneği indirmek için tıklayın.

ASP ile Word Belgeleri Oluşturma 9 Eylül, 2008
Posted by cemg in ASP.Tags: addheader, ASP, contenttype, doc, word
add a comment
<%
Response.ContentType = “application/msword”
Response.AddHeader “Content-Disposition”, “attachment;filename=NAME.doc”
response.Write(“Dotnetindex.com : Visit Site” & vbnewline)
response.Write(“We can use HTML codes for word documents”)
response.Write (” CSS can be used tooo”)
%>
ASP ile Excel Dosyası Oluşturma 9 Eylül, 2008
Posted by cemg in ASP.Tags: addheader, ASP, contenttype, excel, xls
add a comment
<%
Response.AddHeader “Content-Disposition”, “attachment;filename=members.xls”
Response.ContentType = “application/vnd.ms-excel”
response.write “<table width=”100%” border=”1″ >”
response.write “<tr>”
response.write “<th width=”"40%”"><b>Name</b></th>”
response.write “<th width=”"30%”"><b>Username</b></th>”
response.write “<th width=”"30%”"><b>Password</b></th>”
response.write “</tr>”
response.write “<tr>”
response.write “<td width=”"40%”">Scud Block</td>”
response.write “<td width=”"30%”">scud@gazatem.com</td>”
response.write “<td width=”"30%”">mypassword</td>”
response.write “</tr>”
response.write “</table>”
%>







