473,387 Members | 1,678 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

3 Questions....

I have developed a web based application using .Net Framework 1.1.

All the clients for this application are IE. And the client OS is Windows
2000 Professional. I have not used any third party controls in the
application.

1.. What should be the minimum browser version that I should insist on all
the client machines?
2.. In the Internet options window(Menu -> Tools, Internet Options) I have
changed the settings to "Every visit to the page"(Check for newer versions
of stored pages). Making this setting is always a positive point?
3.. Also sometimes the Image buttons of the .ASPX are not getting
displayed on the screen. Why? It happened on only one computer.
Please advice. Thank you very much.

Joe


Nov 18 '05 #1
6 947
1. IE 4.x is usually a good minimum
2. Shouldn't be necessary but couldn't hurt.
3. Try clearing the browser cache on that client computer

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"JoeClark" <Jo********@hotmail.com> wrote in message
news:OL**************@TK2MSFTNGP10.phx.gbl...
I have developed a web based application using .Net Framework 1.1.

All the clients for this application are IE. And the client OS is Windows
2000 Professional. I have not used any third party controls in the
application.

1.. What should be the minimum browser version that I should insist on
all
the client machines?
2.. In the Internet options window(Menu -> Tools, Internet Options) I
have
changed the settings to "Every visit to the page"(Check for newer versions
of stored pages). Making this setting is always a positive point?
3.. Also sometimes the Image buttons of the .ASPX are not getting
displayed on the screen. Why? It happened on only one computer.
Please advice. Thank you very much.

Joe

Nov 18 '05 #2
Steve,
I cleared the cache on that client computer, images started working fine.
How to make sure that it works all the time. It is hard to determine when
exactly the cache should be cleared. But setting the option 2 should always
get the latest data and should not depend upon cache. Is it correct?
I appreciate your quick response.
Joe

"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:eh**************@TK2MSFTNGP14.phx.gbl...
1. IE 4.x is usually a good minimum
2. Shouldn't be necessary but couldn't hurt.
3. Try clearing the browser cache on that client computer

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"JoeClark" <Jo********@hotmail.com> wrote in message
news:OL**************@TK2MSFTNGP10.phx.gbl...
I have developed a web based application using .Net Framework 1.1.

All the clients for this application are IE. And the client OS is Windows 2000 Professional. I have not used any third party controls in the
application.

1.. What should be the minimum browser version that I should insist on
all
the client machines?
2.. In the Internet options window(Menu -> Tools, Internet Options) I
have
changed the settings to "Every visit to the page"(Check for newer versions of stored pages). Making this setting is always a positive point?
3.. Also sometimes the Image buttons of the .ASPX are not getting
displayed on the screen. Why? It happened on only one computer.
Please advice. Thank you very much.

Joe


Nov 18 '05 #3
Perhaps if it was set only before the first visit to the page

"JoeClark" <Jo********@hotmail.com> wrote in message
news:#M**************@TK2MSFTNGP14.phx.gbl...
Steve,
I cleared the cache on that client computer, images started working fine.
How to make sure that it works all the time. It is hard to determine when
exactly the cache should be cleared. But setting the option 2 should always get the latest data and should not depend upon cache. Is it correct?
I appreciate your quick response.
Joe

"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:eh**************@TK2MSFTNGP14.phx.gbl...
1. IE 4.x is usually a good minimum
2. Shouldn't be necessary but couldn't hurt.
3. Try clearing the browser cache on that client computer

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"JoeClark" <Jo********@hotmail.com> wrote in message
news:OL**************@TK2MSFTNGP10.phx.gbl...
I have developed a web based application using .Net Framework 1.1.

All the clients for this application are IE. And the client OS is Windows 2000 Professional. I have not used any third party controls in the
application.

1.. What should be the minimum browser version that I should insist on all
the client machines?
2.. In the Internet options window(Menu -> Tools, Internet Options) I
have
changed the settings to "Every visit to the page"(Check for newer versions of stored pages). Making this setting is always a positive point?
3.. Also sometimes the Image buttons of the .ASPX are not getting
displayed on the screen. Why? It happened on only one computer.
Please advice. Thank you very much.

Joe



Nov 18 '05 #4
Caching is a complex subject. There are many places that images could
potentially get cached.
One reliable way is to tack on a querystring value to the image url that has
the sole purpose of tricking these systems into thinking the image is unique
every time.
Example:
<img src="SomeImage.jpg?RandomID=432d892"/>

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net

"JoeClark" <Jo********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Steve,
I cleared the cache on that client computer, images started working fine.
How to make sure that it works all the time. It is hard to determine when
exactly the cache should be cleared. But setting the option 2 should
always
get the latest data and should not depend upon cache. Is it correct?
I appreciate your quick response.
Joe

"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:eh**************@TK2MSFTNGP14.phx.gbl...
1. IE 4.x is usually a good minimum
2. Shouldn't be necessary but couldn't hurt.
3. Try clearing the browser cache on that client computer

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"JoeClark" <Jo********@hotmail.com> wrote in message
news:OL**************@TK2MSFTNGP10.phx.gbl...
>I have developed a web based application using .Net Framework 1.1.
>
> All the clients for this application are IE. And the client OS is Windows > 2000 Professional. I have not used any third party controls in the
> application.
>
> 1.. What should be the minimum browser version that I should insist on
> all
> the client machines?
> 2.. In the Internet options window(Menu -> Tools, Internet Options) I
> have
> changed the settings to "Every visit to the page"(Check for newer versions > of stored pages). Making this setting is always a positive point?
> 3.. Also sometimes the Image buttons of the .ASPX are not getting
> displayed on the screen. Why? It happened on only one computer.
> Please advice. Thank you very much.
>
> Joe
>
>
>
>



Nov 18 '05 #5
Huh, It is very complex to understand what you are saying. Steve, Can you
please elaborate.
Joe

"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:un*************@TK2MSFTNGP12.phx.gbl...
Caching is a complex subject. There are many places that images could
potentially get cached.
One reliable way is to tack on a querystring value to the image url that has the sole purpose of tricking these systems into thinking the image is unique every time.
Example:
<img src="SomeImage.jpg?RandomID=432d892"/>

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net

"JoeClark" <Jo********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Steve,
I cleared the cache on that client computer, images started working fine. How to make sure that it works all the time. It is hard to determine when exactly the cache should be cleared. But setting the option 2 should
always
get the latest data and should not depend upon cache. Is it correct?
I appreciate your quick response.
Joe

"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:eh**************@TK2MSFTNGP14.phx.gbl...
1. IE 4.x is usually a good minimum
2. Shouldn't be necessary but couldn't hurt.
3. Try clearing the browser cache on that client computer

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"JoeClark" <Jo********@hotmail.com> wrote in message
news:OL**************@TK2MSFTNGP10.phx.gbl...
>I have developed a web based application using .Net Framework 1.1.
>
> All the clients for this application are IE. And the client OS is

Windows
> 2000 Professional. I have not used any third party controls in the
> application.
>
> 1.. What should be the minimum browser version that I should insist on > all
> the client machines?
> 2.. In the Internet options window(Menu -> Tools, Internet Options) I > have
> changed the settings to "Every visit to the page"(Check for newer

versions
> of stored pages). Making this setting is always a positive point?
> 3.. Also sometimes the Image buttons of the .ASPX are not getting
> displayed on the screen. Why? It happened on only one computer.
> Please advice. Thank you very much.
>
> Joe
>
>
>
>



Nov 18 '05 #6
For the technique I mentioend the RandomID parameter should be generated
randomly on each page refresh. This will make the browser and other systems
think that it's a different image so they won't use any cached instances of
the image.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net

"JoeClark" <Jo********@hotmail.com> wrote in message
news:uO**************@TK2MSFTNGP15.phx.gbl...
Huh, It is very complex to understand what you are saying. Steve, Can you
please elaborate.
Joe

"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:un*************@TK2MSFTNGP12.phx.gbl...
Caching is a complex subject. There are many places that images could
potentially get cached.
One reliable way is to tack on a querystring value to the image url that

has
the sole purpose of tricking these systems into thinking the image is

unique
every time.
Example:
<img src="SomeImage.jpg?RandomID=432d892"/>

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net

"JoeClark" <Jo********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
> Steve,
> I cleared the cache on that client computer, images started working fine. > How to make sure that it works all the time. It is hard to determine when > exactly the cache should be cleared. But setting the option 2 should
> always
> get the latest data and should not depend upon cache. Is it correct?
> I appreciate your quick response.
> Joe
>
>
>
> "Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
> news:eh**************@TK2MSFTNGP14.phx.gbl...
>> 1. IE 4.x is usually a good minimum
>> 2. Shouldn't be necessary but couldn't hurt.
>> 3. Try clearing the browser cache on that client computer
>>
>> --
>> I hope this helps,
>> Steve C. Orr, MCSD, MVP
>> http://Steve.Orr.net
>>
>>
>> "JoeClark" <Jo********@hotmail.com> wrote in message
>> news:OL**************@TK2MSFTNGP10.phx.gbl...
>> >I have developed a web based application using .Net Framework 1.1.
>> >
>> > All the clients for this application are IE. And the client OS is
> Windows
>> > 2000 Professional. I have not used any third party controls in the
>> > application.
>> >
>> > 1.. What should be the minimum browser version that I should insist on >> > all
>> > the client machines?
>> > 2.. In the Internet options window(Menu -> Tools, Internet Options) I >> > have
>> > changed the settings to "Every visit to the page"(Check for newer
> versions
>> > of stored pages). Making this setting is always a positive point?
>> > 3.. Also sometimes the Image buttons of the .ASPX are not getting
>> > displayed on the screen. Why? It happened on only one computer.
>> > Please advice. Thank you very much.
>> >
>> > Joe
>> >
>> >
>> >
>> >
>>
>>
>
>



Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: softwareengineer2006 | last post by:
All Interview Questions And Answers 10000 Interview Questions And Answers(C,C++,JAVA,DOTNET,Oracle,SAP) I have listed over 10000 interview questions asked in interview/placement test papers for...
0
by: connectrajesh | last post by:
INTERVIEWINFO.NET http://www.interviewinfo.net FREE WEB SITE AND SERVICE FOR JOB SEEKERS /FRESH GRADUATES NO ADVERTISEMENT
2
by: freepdfforjobs | last post by:
Full eBook with 4000 C#, JAVA,.NET and SQL Server Interview questions http://www.questpond.com/SampleInterviewQuestionBook.zip Download the JAVA , .NET and SQL Server interview sheet and rate...
4
by: Drew | last post by:
I posted this to the asp.db group, but it doesn't look like there is much activity on there, also I noticed that there are a bunch of posts on here pertaining to database and asp. Sorry for...
8
by: Krypto | last post by:
Hi, I have used Python for a couple of projects last year and I found it extremely useful. I could write two middle size projects in 2-3 months (part time). Right now I am a bit rusty and trying...
0
by: ramu | last post by:
C# Interview Questions and Answers8 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers8.html C# Interview Questions and Answers7...
1
by: ramu | last post by:
C# Interview Questions and Answers8 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers8.html C# Interview Questions and Answers7...
0
by: ramu | last post by:
C# Interview Questions and Answers8 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers8.html C# Interview Questions and Answers7...
0
by: reema | last post by:
EJB Interview Questions http://interviewdoor.com/technical/EJB-Interview-Questions.htm CSS Interview Questions http://interviewdoor.com/technical/CSS-Interview-Questions.htm C Interview Questions...
0
by: reema | last post by:
EJB Interview Questions http://interviewdoor.com/technical/EJB-Interview-Questions.htm CSS Interview Questions http://interviewdoor.com/technical/CSS-Interview-Questions.htm C Interview Questions...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.