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 [...]
Archive for November, 2007
Quotes from Dale Carnegie
Posted in Quotes, postive thinking on November 29, 2007 | Leave a Comment »
Joe Satriani – Flying In A Blue Dream
Posted in songs on November 27, 2007 | Leave a Comment »
Get this widget
|
Track details
|
eSnips Social DNA
don’t Forget
Posted in postive thinking on November 27, 2007 | Leave a Comment »
Forum with code
Posted in .net framework 2 on November 22, 2007 | Leave a Comment »
http://sourceforge.net/project/showfiles.php?group_id=154642
How to write word document in asp.net
Posted in .net framework 2, asp.net 1.1, asp.net 2, c# on November 22, 2007 | 2 Comments »
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>” [...]
How to get Ip of Url in c#
Posted in .net framework 2, c# on November 20, 2007 | 3 Comments »
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 ());
}
ibm 486 certification study Guide
Posted in Certifications on November 18, 2007 | Leave a Comment »
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/
Posted in .net framework 2, asp.net 1.1, asp.net 2, c# on November 12, 2007 | Leave a Comment »
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 [...]
House of 1000 Mirrors
Posted in postive thinking on November 12, 2007 | Leave a Comment »
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 [...]
How to access detailed information of a visitor in asp.net
Posted in .net framework 2, asp.net 1.1, asp.net 2, c# on November 6, 2007 | Leave a Comment »
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”;