Feeds:
Posts
Comments

Archive for November, 2007

Act enthusiastic and you will be enthusiastic. Dale Carnegie
Any fool can criticize, condemn, and complain – and most fools do. Dale Carnegie
Any fool can criticize, condemn, and complain but it takes character and self control to be understanding and forgiving. Dale Carnegie
Applause is a receipt, not a bill. Dale Carnegie
Are you [...]

Read Full Post »

Get this widget
|
Track details
|
eSnips Social DNA

Read Full Post »

don’t Forget

Read Full Post »

Forum with code

http://sourceforge.net/project/showfiles.php?group_id=154642

Read Full Post »

You can add follwing code at page level function and called in button or page load
function Void GenerateWordDoc()
{
string strDocBody;
try

{
strDocBody = “<html “ + “xmlns:o=’urn:schemas-microsoft-com:office:office’ “ + “xmlns:w=’urn:schemas-microsoft-com:office:word’” + “xmlns=’http://www.w3.org/TR/REC-html40′>” + “<head>” + “<title>Dynamic Generated Document</title>”;
strDocBody = strDocBody + “<!–[if gte mso 9]>” + “<xml>” + “<w:WordDocument>” + “<w:View>Print</w:View>” + “<w:Zoom>100</w:Zoom>” + “<w:DoNotOptimizeForBrowser/>” + “</w:WordDocument>” [...]

Read Full Post »

How to get Ip of Url in c#

Here is sample code  remember to add system.net namespace
IPHostEntry ip = Dns.GetHostByName (“www.yahoo.com”);
IPAddress [] IpA = ipE.AddressList;
for (int i = 0; i < IpA.Length; i++)
{
    Console.WriteLine (“IP Address {0}: {1} “, i, IpA[i].ToString ());
}

Read Full Post »

For the Study or perpartion for Ibm 486 OOAD certificaiton i found these links
http://guide.zepho.com/version1/objective.html 
http://www.parlezuml.com/
http://www.uml-forum.com/

Read Full Post »

I used the free dll which writes pdf files as simple as we us system IO to simple files . I write the the page with inline scripting text and placed the following code . I fetch data from database to write to pdf file. i  remove html tags from data because data save in database is comes form htm text [...]

Read Full Post »

Long ago in a small, far away village, there was place known as the House of 1000 Mirrors. A small, happy little dog learned of this place and decided to visit. When he arrived, he bounced happily up the stairs to the doorway of the house. He looked through the doorway with his ears lifted [...]

Read Full Post »

In ASP.NET, the Request.ServerVariables collection holds a lot of useful information about the visitor.
For example:
// Getting ip of visitor
string ip = Request.ServerVariables["REMOTE_ADDR"];
// Getting the page which called the script
string page = Request.ServerVariables["HTTP_REFERER"];
// Getting Browser Name of Visitor
if (Request.ServerVariables["HTTP_USER_AGENT"].Contains(“MSIE”))
  browser = “Internet Explorer”;
if (Request.ServerVariables["HTTP_USER_AGENT"].Contains(“FireFox”))
  browser = “Fire Fox”;
if (Request.ServerVariables["HTTP_USER_AGENT"].Contains(“Opera”))
  browser = “Opera”;

Read Full Post »