.Net Should support IE 5.5 ? How ?

  • Thread starter Thread starter Britto Raj
  • Start date Start date
B

Britto Raj

Hi all,
I installed Visual Studio .Net with IE 6.0 after sometime
as per our client's requirement i unstall IE 6.0 and
install IE 5.5 Now its says to open "Visual Studio
requires Internet Explorer 6.0 or greater to run properly.
Please re-install Internet Explorer 6.0." How do run with
IE 5.5 in .net Studio.

Thanks
Britto
 
Hey GuruDev, what about client machines? De they need to have IE6 or IE5.5
will do it?
I'm talking about ASP.Net W95 clients.

TIA.
Regards,
 
if your client side uses any dotnet specific controls or client side
processing of JScript code etc then you need IE 6, else if you are only
passing pure HTML related code to the client then IE 5.5 will do..
 
Gurudev said:
if your client side uses any dotnet specific controls or client side
processing of JScript code etc then you need IE 6, else if you are only
passing pure HTML related code to the client then IE 5.5 will do..

Why do you need IE6 for JScript (JavaScript)? Earlier versions do support
JavaScript.
 
I mean JScript.Net code..


John Saunders said:
Why do you need IE6 for JScript (JavaScript)? Earlier versions do support
JavaScript.
--
John Saunders
Internet Engineer
(e-mail address removed)

reinstall
it..
[/QUOTE]
 
Thanx Gurdev, you've been very helpfull.
One last question, is there a way to open a new browser window not using
JScript???
In other words is there a way to open a new browser window that can be seen
from W95.

TIA,
Regards,
 
yes of course, you can use javascript..window.open() function opens a new
window, if I remember right it takes three parameters URL to open, new
window name, window properties string, and the third is optional paramter I
think

--
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Gurudev
Software Engineer, NetKraft,
Bangalore, India.
e-me: (e-mail address removed)
____________________________________________
 
ok, this is what I have on my click event and nothing happens:
Response.Write("<script language='javascript'>window.open('" + l_strURL +
"','new_window','toolbar=0,status=0,scrollbars=1,menubar=0,resizable=1,heigh
t=350,width=500')</script>")

Can you please help me?
 
Back
Top