Security problem

  • Thread starter Thread starter lostman
  • Start date Start date
L

lostman

Hi,

I have a problem with some user of my web site.

I display a list of object on a datagrid, with a "Detail" button for
each of them, when the user click on it, another datagrid is displayed on
top of the original datagrid with the detail of the selected object. But for
some user nothing happen when they click on "detail".

If the same user go to the Security Tab in Internet Explorer and change
is security settgins from HIGH to LOW everything work fine.

Did a have something to change somewhere to avoid this little problem ?

Thank you .
 
Some of the functions use client-side script if .Net detects a recent version
of Internet Explorer. However,some security settings disable scripting.

Although ASP.NET detects the browser's capabilities, it can't readily tell if
scripting is turned off. In that case you can override the automatic detection
and simply tell it that the browser is downlevel:

http://msdn.microsoft.com/library/d.../vbconwebformscontrolsbrowsercapabilities.asp

The @page includes the ClientTarget attribute that you can set to downlevel:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconpage.asp


Some of the server controls have an EnableClientScript property that you should
set to false.

Ken
MVP [ASP.NET]


Hi,

I have a problem with some user of my web site.

I display a list of object on a datagrid, with a "Detail" button for
each of them, when the user click on it, another datagrid is displayed on
top of the original datagrid with the detail of the selected object. But for
some user nothing happen when they click on "detail".

If the same user go to the Security Tab in Internet Explorer and change
is security settgins from HIGH to LOW everything work fine.

Did a have something to change somewhere to avoid this little problem ?

Thank you .
 
Back
Top