sir,
http://www.mmlsoft.com/hdata/fmlaxc-sample/fmlaxc.html
In the Faq section the above url is for displaying the sample of activex control. IT does not dispaly the control for this it requires the evaluation version to be installed .so i have installed that but the problem is same .
For my personel use i have downloaded the licence creater from Microsoft.... but I dont know from where I will get the CLID for this licence file and where to put that........
But their is another problem also the code what I have written for asp.net in .aspx page it works when the file extention is changed to .html but why it does not work in asp.net web application
I am sending the code
<%@ Page Language="C#" AutoEventWireup="false" EnableEventValidation ="false" CodeFile="activex_page.aspx.cs" Inherits="activex_page" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script language="JavaScript">
function onClickOk()
{
var str = formulator.GetMathMLStr();
alert("str");
}
</script>
</head>
<body>
<form id="form1" runat="server">
<object
classid="clsid:737B43F8-5A87-4014-8C6D-C7DB1A99360C"
type="application/x-oleobject" name="formulator-obj" width="700" height="300"
id="formulator">
</object>
<br/>
<br/>
<a href="#" onClick="onClickOk();">Post math expression</a>
</form>
</body>
</html>
thanks...
