in this website you can use skype without installing just using web base paltform:
http://imoim.web-messenger.eu/
Wednesday, July 22, 2009
Sunday, July 12, 2009
Thursday, July 2, 2009
How to make batch file in Linux
the file is called "batchfile"
the contect of batchfile is
#!/bin/bash
g++ main.c -o main
to run it just
>bash batchfile
the contect of batchfile is
#!/bin/bash
g++ main.c -o main
to run it just
>bash batchfile
Wednesday, July 1, 2009
Javascript alert with asp.net
- Page.ClientScript.RegisterStartupScript(typeof(Page), "SetFocus", " <script>alert('this is jaavscript alert.');document.getElementById('" + btnbutton.ClientID + "').focus();</script>");
rename attachment file name in asp.net Email
Attachment attachmentobj = new Attachment("c:\\test.pdf);
attachmentobj.ContentDisposition.FileName = "information.pdf";
attachmentobj.ContentDisposition.FileName = "information.pdf";