DirectoryComputersBlog Details for "Beyond Web Logs - Success Here and Hereafter"

Beyond Web Logs - Success Here and Hereafter

Beyond Web Logs - Success Here and Hereafter
Technology news, tips and tricks, religion islam, networks and more
Articles: 1, 2, 3, 4

Articles

Encode Decode URL posted strings with unicode chars
2008-05-07 02:07:00
Form field values are always encoded during form submit. A simple string like "text to submit" would be encoded like "text+to+submit" which if not decoded properly, can produce problems for viewing or debugging. The natural choice to decode seems to be HttpUtility.HtmlEncode. If you use HttpUtility.HtmlEncode, like the following piece of code demonstrate: string TestString = "This is a <Test String>."; string EncodedString = Server.HtmlEncode(TestString); AND you would suppose it would yield "This+is+a+%3cTest+String%3e." But it reality, it yields "This is a &lt;Test String&gt;." Now, what's happening here is that the resulting string is safer for HTTP transfer but it's not good enough to be POSTed. This is where HttpUtility.UrlEncode comes to the rescue. A string encoded with UrlEncode can be safely POSTed to another page. string TestString = "This is a <Test String>."; string...
More About: Strings , Unicode
How to open Office 2007 file in Office 2007: Microsoft Office Compatibility
2008-05-06 11:00:00
if you want to open Microsoft Office Word 2007 .docx or .docm files with Microsoft Office Word 2003, Word 2002, or Word 2000, you need to install the Microsoft Office Compatibility Pack for 2007 Office Word, Excel and PowerPoint File Formats and any necessary Office updates. By using the Compatibility Pack for the 2007 Office system, you can open, edit some items, and save Office Word 2007 documents in previous versions of Word. By installing the Compatibility Pack along side of Microsoft Office XP, or Office 2003, you will be able open, edit, save, and create files using the Open XML Formats new to the 2007 Microsoft Office system. Office 2000 users, as well as users of Windows 2000 SP4 and later, can convert Open XML Formats to binary file formats from within Windows Explorer. click here to download it
Visual SourceSafe 2005 hang with error: Hanging application ssadmin.exe, ve
2008-05-05 05:31:00
While trying to checkin/checkout files VSS 2005 Application hangs up and give no responce till 10 to 15 min. and give following error in event viewer: Event Type:         Error Event Source:    Application Hang Event Category:     &n bsp;      & nbsp;   (101) Event ID:      &n bsp;       1002 Date:               ;      &nbs p; 04/28/2008 Time:               ;      &nbs p; 5:46:51 PM User:               ;      &nbs p; N/A Computer:     &n bsp;    TECHNO-IBR Description: Hanging application s...
More About: Visual
Visual SourceSafe 2005 hang with error: Hanging application ssadmin.exe, ve
2008-05-05 05:31:00
While trying to checkin/checkout files VSS 2005 Application hangs up and give no responce till 10 to 15 min. and give following error in event viewer: Event Type:         Error Event Source:    Application Hang Event Category:     &n bsp;      & nbsp;   (101) Event ID:      &n bsp;       1002 Date:               ;      &nbs p; 04/28/2008 Time:               ;      &nbs p; 5:46:51 PM User:               ;      &nbs p; N/A Computer:     &n bsp;    TECHNO-IBR Description: Hanging application s...
More About: Visual
Script to Shutdown Computer
2008-05-05 03:03:00
Good script, you can use it with GP (Group Policy) and deploy on your clients systems if you want to shutdown system when their shifts are off: strComputer = "." Set objWMIService = GetObject_     ("winmgmts:{impersonationLevel=imper sonate,(Shutdown )}\" & _         ; strComputer & " ootcimv2") Set colOperatingSystems = objWMIService.ExecQuery _     ("Select * from Win32_OperatingSystem")   For Each objOperatingSystem in colOperatingSystems     objOperatingSystem.Win32Shutdown(1) Next 
More About: Script
Script to Shutdown Computer
2008-05-05 03:03:00
Good script, you can use it with GP (Group Policy) and deploy on your clients systems if you want to shutdown system when their shifts are off: strComputer = "." Set objWMIService = GetObject_     ("winmgmts:{impersonationLevel=imper sonate,(Shutdown )}\" & _         ; strComputer & " ootcimv2") Set colOperatingSystems = objWMIService.ExecQuery _     ("Select * from Win32_OperatingSystem")   For Each objOperatingSystem in colOperatingSystems     objOperatingSystem.Win32Shutdown(1) Next 
More About: Script
Sample scripts for monitoring network traffic and activity....
2008-05-04 23:57:00
Hello, For all network Techies - these scripts are really good, you can check what is going on your network..... http://www.microsoft.com/technet/scriptce nter/scripts/network/monitor/default.mspx ?mfr=true
More About: Traffic , Network , Scripts , Monitoring , Sample
Sample scripts for monitoring network traffic and activity....
2008-05-04 23:57:00
Hello, For all network Techies - these scripts are really good, you can check what is going on your network..... http://www.microsoft.com/technet/scriptce nter/scripts/network/monitor/default.mspx ?mfr=true
More About: Traffic , Network , Scripts , Monitoring , Sample
What is LINQ and Pronunciation of LINQ
2008-04-29 05:18:00
LINQ as you already know stands for "Lanugage Integrated Query" - but many people don't know that its pronunciation is "LINK" not "Link Cue" Just in case, if you are living under the rock, LINQ to SQL is an O/RM (object relational mapping) implementation that ships in the .NET Framework 3.5 release, and which allows you to model a relational database using .NET classes.  You can then query the database using LINQ, as well as update/insert/delete data from it. LINQ to SQL fully supports transactions, views, and stored procedures.  It also provides an easy way to integrate data validation and business logic rules into your data model.  
More About: Technology , Pronunciation
What is LINQ and Pronunciation of LINQ
2008-04-29 05:18:00
LINQ as you already know stands for "Lanugage Integrated Query" - but many people don't know that its pronunciation is "LINK" not "Link Cue" Just in case, if you are living under the rock, LINQ to SQL is an O/RM (object relational mapping) implementation that ships in the .NET Framework 3.5 release, and which allows you to model a relational database using .NET classes.  You can then query the database using LINQ, as well as update/insert/delete data from it. LINQ to SQL fully supports transactions, views, and stored procedures.  It also provides an easy way to integrate data validation and business logic rules into your data model.  
More About: Technology , Pronunciation
How to get Column information using SQL
2008-04-29 00:18:00
Here is the simple query you can use to fetch column information from a given table: SELECT ORDINAL_POSITION ,COLUMN_NAME ,DATA_TYPE ,CHARACTER_MAXIMUM_LENGTH ,IS_NULLABLE ,COLUMN_DEFAULT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'Product' -- place your table in question here in quotes ORDER BY ORDINAL_POSITION ASC;   Another more simpler option could be to use sp_help as follows: sp_help 'Product' -- place your table in question here in quotes
More About: Information , Column
How to get Column information using SQL
2008-04-29 00:18:00
Here is the simple query you can use to fetch column information from a given table: SELECT ORDINAL_POSITION ,COLUMN_NAME ,DATA_TYPE ,CHARACTER_MAXIMUM_LENGTH ,IS_NULLABLE ,COLUMN_DEFAULT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'Product' -- place your table in question here in quotes ORDER BY ORDINAL_POSITION ASC;   Another more simpler option could be to use sp_help as follows: sp_help 'Product' -- place your table in question here in quotes
More About: Information , Column
How to Reduce Page Load Time with ASP.NET AJAX
2008-04-29 00:07:00
A very nice trick with tab controls to asynchronously load their content in the background and improve perceived page load time. Reducing Page Load Time with UpdatePanel and Timer
More About: Ajax , Reduce
How to Reduce Page Load Time with ASP.NET AJAX
2008-04-29 00:07:00
A very nice trick with tab controls to asynchronously load their content in the background and improve perceived page load time. Reducing Page Load Time with UpdatePanel and Timer
More About: Ajax , Reduce
Inside Google Australia
2008-04-26 22:43:00
It's the office space everybody's talking about..... Google Australia
More About: Inside
Inside Google Australia
2008-04-26 22:43:00
It's the office space everybody's talking about..... Google Australia
More About: Inside
Bloomberg (USA) Live TV...!!!
2008-04-26 15:40:00
BLoomberg LIVE TV Click here for Live TV
More About: Bloomberg
Bloomberg (USA) Live TV...!!!
2008-04-26 15:40:00
BLoomberg LIVE TV Click here for Live TV
More About: Bloomberg
It's like Voltron.....The Gadget Bag!!!!
2008-04-26 04:21:00
We live in a fragmented society. We are constantly bombarded by sensory input to the point where the noise actually becomes comforting. As a geek on the move, you need your cell phone, PDA, music player, digital camera, and portable gaming device because you're never sure what kind of entertainment you'll be in the mood for!   To lug all that stuff around, you could carry them loose in a big messenger bag, and with everything clanging around in there, no wonder your iPod got scratched. What you need is a bag with discrete pockets in them for specific devices - held nice and snug. What would be even more awesomer would be if you could take some of your items or all of your items without removing them from the bag - you know, in case you just want your iPod, or just your PDA. The Gadget Bag is a stylish man-bag* that has room for every little electronic thing you've got. Four compartments, each their own little bag, zip and strap together into a satchel about ...
It's like Voltron.....The Gadget Bag!!!!
2008-04-26 04:21:00
We live in a fragmented society. We are constantly bombarded by sensory input to the point where the noise actually becomes comforting. As a geek on the move, you need your cell phone, PDA, music player, digital camera, and portable gaming device because you're never sure what kind of entertainment you'll be in the mood for!   To lug all that stuff around, you could carry them loose in a big messenger bag, and with everything clanging around in there, no wonder your iPod got scratched. What you need is a bag with discrete pockets in them for specific devices - held nice and snug. What would be even more awesomer would be if you could take some of your items or all of your items without removing them from the bag - you know, in case you just want your iPod, or just your PDA. The Gadget Bag is a stylish man-bag* that has room for every little electronic thing you've got. Four compartments, each their own little bag, zip and strap together into a satchel about ...
Technology works arround you.... X-Ray Bag!!!
2008-04-26 03:55:00
Often times, a really cool looking bag draws the attention of the unsavory - those that may want to take that which is tantalizingly hidden within. It's the fact that the contents are invisible that makes the temptation so high! You might have a big wad of cash inside, or a stack of iPhones, a felt satchel of diamonds, or maybe a large gold brick! Then again, maybe all you've got is a pack of gum, a ball of twine, a rubber-band, and a large caliber handgun. Sure, the potential risk is high on a mark like that, but the potential reward could be even higher! We've got a solution - show the world exactly what you're carrying, even if what you're showing is only a reasonable facsimile. The X-Ray tote and shoulder bags, made of a space-age woven plastic fiber, appear to have been bombarded by X-rays, and have magically made your eyes sensitive to their reflection. It appears as though your stuff has gone through the security check at the airport (although, we hi...
More About: Technology , Works
Technology works arround you.... X-Ray Bag!!!
2008-04-26 03:55:00
Often times, a really cool looking bag draws the attention of the unsavory - those that may want to take that which is tantalizingly hidden within. It's the fact that the contents are invisible that makes the temptation so high! You might have a big wad of cash inside, or a stack of iPhones, a felt satchel of diamonds, or maybe a large gold brick! Then again, maybe all you've got is a pack of gum, a ball of twine, a rubber-band, and a large caliber handgun. Sure, the potential risk is high on a mark like that, but the potential reward could be even higher! We've got a solution - show the world exactly what you're carrying, even if what you're showing is only a reasonable facsimile. The X-Ray tote and shoulder bags, made of a space-age woven plastic fiber, appear to have been bombarded by X-rays, and have magically made your eyes sensitive to their reflection. It appears as though your stuff has gone through the security check at the airport (although, we hi...
More About: Technology , Works
Bill Gates Rules Of Life - Speech at high school about 11 things they did n
2008-04-19 01:22:00
Bill Gates recently gave a speech at a High School about 11 things they did not and will not learn in school. He talks about how feel-good, politically correct teachings created a generation of kids with no concept of reality and how this concept set them up for failure in the real world. Rule 1 : Life is not fair - get used to it! Rule 2: The world won't care about your self-esteem. The world will expect you to accomplish something BEFORE you feel good about yourself. Rule 3: You will NOT make $60,000 a year right out of high school. You won't be a vice-president with a car phone until you earn both. Rule 4: If you think your teacher is tough, wait till you get a boss. Rule 5: Flipping burgers is not beneath your dignity. Your Grandparents had a different word for burger flipping: they called it opportunity. Rule 6: If you mess up, it's not your parents' fault, so don't whine about your mistakes, learn from them. Rule 7: Before you were born, y...
More About: Bill Gates , High School , Rules
Bill Gates Rules Of Life - Speech at high school about 11 things they did n
2008-04-19 01:22:00
Bill Gates recently gave a speech at a High School about 11 things they did not and will not learn in school. He talks about how feel-good, politically correct teachings created a generation of kids with no concept of reality and how this concept set them up for failure in the real world. Rule 1 : Life is not fair - get used to it! Rule 2: The world won't care about your self-esteem. The world will expect you to accomplish something BEFORE you feel good about yourself. Rule 3: You will NOT make $60,000 a year right out of high school. You won't be a vice-president with a car phone until you earn both. Rule 4: If you think your teacher is tough, wait till you get a boss. Rule 5: Flipping burgers is not beneath your dignity. Your Grandparents had a different word for burger flipping: they called it opportunity. Rule 6: If you mess up, it's not your parents' fault, so don't whine about your mistakes, learn from them. Rule 7: Before you were born, y...
More About: Bill Gates , High School , Rules
How to set or synchronize your machine time with domain controller
2008-04-17 21:24:00
Sometimes, you might get an error "The time on your machine does not match with the network time". The basic issue here is that the time on the machine is not automatically synced with the time on the domain controller. To resolve this problem, simply login as a local account and sync the time with the domain controller using the Net time command. To do this, goto the command prompt and run the following: NET TIME /domain:mydomainname /SET /Y This will synchronize the machine time to that of the domain controller.
More About: How To , Domain , Machine , Time , Controller
How to set or synchronize your machine time with domain controller
2008-04-17 21:24:00
Sometimes, you might get an error "The time on your machine does not match with the network time". The basic issue here is that the time on the machine is not automatically synced with the time on the domain controller. To resolve this problem, simply login as a local account and sync the time with the domain controller using the Net time command. To do this, goto the command prompt and run the following: NET TIME /domain:mydomainname /SET /Y This will synchronize the machine time to that of the domain controller.
More About: How To , Domain , Machine , Time , Controller
How to set page height in web applications 100%
2008-04-17 00:54:00
The trick is to make sure all container elements i.e. DIV's and Table's height is 100%. Following code can be a good startup to take care of that: html, body, #wrapper {  height: 100%;  }
More About: Applications , Page
How to set page height in web applications 100%
2008-04-17 00:54:00
The trick is to make sure all container elements i.e. DIV's and Table's height is 100%. Following code can be a good startup to take care of that: html, body, #wrapper {  height: 100%;  }
More About: Applications , Page
Silverlight Tutorials, How To's, Resources
2008-04-16 06:16:00
Some of the great Silverlight resources are available here:  http://blogs.msdn.com/canux/archive/2008/ 03/26/silverlight-2-resource.aspx
More About: Tutorials , Resources , How To
How to add Live Search in any web page
2008-04-15 23:37:00
The Live Search box is pretty cool. It shows the search result in a pop-up right on the page. The HTML snippet below downloads the necessary components for providing the Live.com search functionality right on the page. Just put this snippet anywhere on the page and you have search functionality in that exact spot. Best of all, you don’t need to register on the Live.com web site to get code snippets nor do you need to make web service calls to get search result. Both the UI and the functionality is provided inside the snippet. <div id="WLSearchBoxDiv" style="width:325px;"> <table cellpadding="0px" cellspacing="0px"> <tr id="WLSearchBoxPlaceholder"> <td style="white-space:nowrap; color: White; padding-right: 5px; font-size 12pt">Live Search </td> <td style="border-style:solid none solid solid;border-color:#4B7B9F;border width:2px;&quo...
More About: Page
More articles from this author:
1, 2, 3, 4
35983 blogs in the directory.
Statistics resets every week.


Contact | About
© Blog Toplist 2008 - SEO by FeWorks
eXTReMe Tracker