How to make your webpage IE8 compatible

Browser June 30th, 2009

3
Digg me

Follow these steps, to make your webpage IE8 compatible. Feel free to add more pointers in comments.

1. Make your webpages Xhtml 1.1 compatible by adding this on top of your .aspx or .html page

< ?xml version="1.0" encoding="UTF-8" ?>
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

2. Remove all Inline Styling

Donot use inline styling

[table style="width:100px;height:200px;background-color:#ebebeb;"] [/table]

Instead use

.tableStyle1 {
width:100px;
height:200px;
background-color:#ebebeb;
}

[table class="tableStyle1"] [/table]

Replace ‘[' & ']‘ with ‘< ' and '>‘

3. Validate your CSS using

http://jigsaw.w3.org/css-validator/#validate_by_uri+with_options

Profile : CSS Level 2.1
Medium : ALL
Warnings : ALL or Normal Report

4. Use XHTML equivalents for outdated / deprecated html tags

Click here to view new XHTML Constructs

The Microsoft Jet database engine could not find the object

Access, Error Messages June 2nd, 2009

0
Digg me

The Microsoft Jet database engine could not find the object ‘ ‘. Make sure the object exists and that you spell its name and the path name correctly.

Microsoft jet database engine

Today I got this error when I was trying to import a CSV file into Access database 2003. Even though I was trying to load this from my C: drive I was getting this error.

After couple of tries found that filename “currentproc.20090531.csv” had an extra “.”  and that was the problem.

So renamed the file to 20090531.csv and it worked :)

Happy importing.

Where is the Connection String ?

SQLServer 2005 May 27th, 2009

3
Digg me

Is this a bug in SQL Server 2005 Sp3 or a feature ?

SQL Server 2005 Management Studio Sp2

SQL 2005-sp2-odbc-import

SQL Server 2005 Management Studio Sp3

sql2005-sp3-odbc-import

Where is the Connection String ? How are we supposed to import data from ODBC data sources ?

ASP.NET 2.0 Nested GridView

Asp.Net, Web May 27th, 2009

7
Digg me

This is a simple sample example screen cast of how to nest a gridview inside another gridview to display master – detail information. For example listing orders and items for each order.

Thanks to ( more .... )

Manage Terminal Services Session

Tips and Tricks, Windows May 27th, 2009

1
Digg me

To Manage Terminal Services Session first

Query the Server 192.168.2.5

c:\>qwinsta /server:192.168.2.5

SESSIONNAME USERNAME ID STATE TYPE DEVICE
console   0 Conn wdcon
rdp-tcp   65536 Listen rdpwd  
rdp-tcp#470 user1 1 Active rdpwd  
rdp-tcp#471 user2 3 Active rdpwd  

                                                   Â
To remove User1, issue the following command

c:>rwindsta /server:192.168.2.5 1

More info..

http://www.notes411.com/dominosource/tips.nsf/0/2913BC501C9F874D802571AA004E9580!opendocument

http://weblogs.asp.net/owscott/archive/2003/12/30/46776.aspx

Related Post : Too Many Users Connected

http://www.gchandra.com/scripts/index.php/2008/07/20/windows-remote-desktop-too-many-users-connected-rdp/

Browser Comparison

Web Coding May 22nd, 2009

0
Digg me

Recd. this comparison chart via email.

Browser Policy

Office 2007 SP2

Softwares, Tools April 29th, 2009

0
Digg me

Office 2007 users.. here is great news.

Microsoft released, Office 2007 Service pack 2 yesterday

It has lot of bug fixes and nice features..

Save as PDF / ODF
Improved Charting on Excel
Speeds up Outlook
Improved picture quality on Powerpoint Presentations
and lot more..

Check out the list here..

http://support.microsoft.com/?kbid=953195

—————–

Get Office 2007  Service Pack 2, download from

————————-

Unable to instantiate XML DOM document : SSIS 2005

Error Messages, SQLServer 2005, Tips and Tricks April 27th, 2009

0
Digg me

SSIS 2005 Business Intelligence

Unable to instantiate XML DOM document, please verify that MSXML binaries are properly installed and registered.

 Other variations are  Failed to save package file “.dtsx” with error 0×8002801D “Library not registered.”

The reason you see this error is because MSXML got corrupted.

The fix is

1. Close Studio / Business Intelligence

2. Download Latest MSXML 4.0 (sp3)  as of today.

3. Install it. Done

2a. Some cases you may need to install MSXML 6.0.

The Three Superpowers

Misc, Wordpress April 9th, 2009

0
Digg me

The three Superpowers …

 

Google Search

Firefox Browser

Wordpress Software

Power of Three

Power of Three

The one common attribute in all of the above is “features & usability”. 

Google Search : Amazing search results on anything and everything.

Firefox : Just think of any “genuine” feature you need. Its already available as plugin. (Power of Open Source)

Wordpress : The architecture is unbelievable. Again, think of any feature, theme,  its already available. It takes one extra step by handing over the source file itself. (Power of Open Source)

In future something better will come, atleast for next few years these 3 will rule and make life easier for designers and developers.

Note: Its a belief there is one almighty which gives whatever you ask for. 

“Google Andavar” ?

Get Server Name using IP

Tips and Tricks, Windows March 30th, 2009

1
Digg me

To find out Windows Server Name using IP

Goto Command Prompt (Start > Run > cmd>

C:> nbtstat -A  <<ip address>>

(remember upper case A)

Note (added on mar 31st)

this works on all versions of windows

http://www.computerhope.com/nbtstat.htm