GeckoBuildDate Property (.NET)

 

Type: String

 

Returns the build date of the Gecko engine the browser is based on, in the format of YYYYMMDD, or an empty string if the browser is not based on the Gecko engine. For example, "20020530".

 

C# Example:

<html>Gecko build date:

<% BrowserObj browObj = BrowserObj.GetBrowser();

if (browObj.Gecko == true)

Response.Write(browObj.GeckoBuildDate);

else

Response.Write("Not a Gecko based browser");

%>

</html>

 

See Also:

Gecko Property (.NET)