using component written in JScript

DykasAbhirret

New Member
&nbsp;<BR>Hi,<BR><BR>how can I achieve the above .<BR>i have in a page <BR><%@ import Namespace = "Microsoft.JScript" %><BR><%@ import Namespace="TimeJS" %><BR>and i get the error "The type or namespace name 'JScript' does not exist in the class or namespace 'Microsoft' (are you missing an assembly reference?)" <BR><BR>or simpler,<BR>is there a function/method in C# similar with getTime() from JScript.<BR>"The getTime method returns an integer value representing the number of milliseconds between midnight, January 1, 1970 and the time value in the Date object"<BR><BR>Thank you !<BR><BR>------component--------------<BR>package TimeJS {<BR> public class GetTime {<BR> public function milliDif() {<BR> var d = new Date();<BR> return d.getTime() <BR> }<BR> }<BR> }
 
Back
Top