Making New web site by using ASP.Net 2005

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi EveryBody:

Can my web site that made by Asp.Net in Vb.Net 2005 in any browser like
Internet Expolrer, Opera, FireFox and NetScape ?

Any help will be appreciated

regard's

Husam
 
Can my web site that made by Asp.Net in Vb.Net 2005 in any browser like
Internet Expolrer, Opera, FireFox and NetScape ?

If you write your site to XHTML-compliant standards, it will almost
certainly work across multiple browsers, and multiple platforms e.g.
Windows, MacOS, Linux etc... You can validate your site here:
http://validator.w3.org/

This might also be useful to you: http://en.wikipedia.org/wiki/Quirks_mode

Lastly, you're using VB.NET as your server-side language, which is fine of
course. However, under no circumstances should you use VBScript for any
client-side scripting, as that will mean your site will only work in
Microsoft IE. Use JavaScript for client-side scripting.
 
Back
Top