Re: [ADVANCED-DOTNET] Javascript Disabled

2006-09-10 Thread Shawn Wildermuth
if (Request.Browser.JavaScript) { // Can JScript } else { // Can't } Thanks, Shawn Wildermuth Wildermuth Consulting Services, LLC http://adoguy.com C# MVP, MCSD.NET, Author and Speaker > -Original Message- > From: Discussion of advanced .NET topics. > [mailto:[EMAIL PROTECTED] On Be

Re: [ADVANCED-DOTNET] Need help with a simple VB.Net Problem

2006-09-10 Thread Jon Rothlander
Bob, Thanks so much for you help and suggestions. I built the classes per your suggestions using the interface approach and that was exactly what I was wanting. I really appreciate your time. Thanks again, Greg -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL

Re: [ADVANCED-DOTNET] Javascript Disabled

2006-09-10 Thread Shawn Wildermuth
Isn't this in the BrowserCaps? I don't have MSDN with me, but I thought it was mentioned there. Thanks, Shawn Wildermuth Wildermuth Consulting Services, LLC http://adoguy.com C# MVP, MCSD.NET, Author and Speaker > -Original Message- > From: Discussion of advanced .NET topics. > [mailt

[ADVANCED-DOTNET] DHTML API Reference Download

2006-09-10 Thread Girish Jain
Hi All, I am looking for the complete Internet Explorer DHTML API Reference as a single-file download (such as .chm or .pdf). I did googled up but could not fine much out of it. I want the entire help to be downloaded locally to my machine so that I can refer it anytime I want and I dont have t

Re: [ADVANCED-DOTNET] Javascript Disabled

2006-09-10 Thread Frans Bouma
> On 9/10/06, Frans Bouma <[EMAIL PROTECTED]> wrote: > >An old trick was that you have a common start page, and from > > there, redirect with javascript to a different page. There, > you set a > > flag and redirect back to the main page, which now doesn't > contain the javascript redirect c

Re: [ADVANCED-DOTNET] Javascript Disabled

2006-09-10 Thread phil paxton
On 9/10/06, Frans Bouma <[EMAIL PROTECTED]> wrote: An old trick was that you have a common start page, and from there, redirect with javascript to a different page. There, you set a flag and redirect back to the main page, which now doesn't contain the javascript redirect code because of

Re: [ADVANCED-DOTNET] Javascript Disabled

2006-09-10 Thread Frans Bouma
> How do I know if Javascript is disabled in the browser from > ASP.NET. In the past we have used BrowserHawk but this > present project cannot afford this. > The Browser.JavaScript object just lets me know that the > browser supports javascript, not that it is disabled. I know > I can set a hidd

[ADVANCED-DOTNET] Adding an Assembly Manifest to a module

2006-09-10 Thread Tim Kettler
Hi, is there a command line tool in the .NET Framework or SDK with which I can add a assembly manifest to a existing module to convert it to a single module assembly. I know of al.exe but this will not build a single module assembly (with the module embedded) like for example the c# compiler will

[ADVANCED-DOTNET] Javascript Disabled

2006-09-10 Thread Paul Cowan
Hi all, How do I know if Javascript is disabled in the browser from ASP.NET. In the past we have used BrowserHawk but this present project cannot afford this. The Browser.JavaScript object just lets me know that the browser supports javascript, not that it is disabled. I know I can set a hidd