How can we check whether the cookie is enabled?

It can be done by checking the read only property navigator.cookieEnabled. navigator.cookieEnabled will give the value true/false based on the browser support for cookies. functionCookieEnabled() { if(navigator.cookieEnabled) { alert(‘Cookie Enabled’); } }

How to truncate the data in the column

VB.NET Protected function TruncateData( Byval strNotes as string) If strNotes.Length > 20 then Return strNotes.Substring(0,20) + ‘…’ Else return strnotes End function C# protected string TruncateData( string strNotes ) { if (strNotes.Length > 20) { return strNotes.Substring(0,20) + ‘…’; } else { return strNotes; } }

How the browser name can be detected?

We can use navigator.appName property, to identify the browser we are using .For Netscape browsers, the value of navigator.appName is ‘Netscape’. For Microsoft Internet Explorer browsers,the value of navigator.appName is ‘Microsoft Internet Explorer’ . The following code is used for browser detection. function BrowserDetect() { document.write(’navigator.appName = ’+navigator.appName+’ ’) document.write(’navigator.userAgent = ’+navigator.userAgent+’ ’) if ((navigator.userAgent).indexOf(‘Opera’)!=-1) { document.write(‘You are using an Opera browser.’) } else if (navigator.appName==’Netscape’) { document.write(‘You are using a Netscape browser.’) } else if ((navigator.appName).indexOf(‘Microsoft’)!=-1) { document.write(‘You are using Microsoft Internet Explorer.’) } }