Wednesday, July 22, 2009

web base skype

in this website you can use skype without installing just using web base paltform:

http://imoim.web-messenger.eu/

Sunday, July 12, 2009

Order by Random row in Microsoft SQL Server

SELECT TOP 1 column FROM table
ORDER BY NEWID()

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

Wednesday, July 1, 2009

Javascript alert with asp.net

  1. 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";