urgent !implementing excel function in asp.net
-
is it possible to do excel function using datagrid selection value to calculate forecast value?anyone has any idea? mijan
do you want to use Excel to do this or you want to write a method that does what Excel does? If you have Office 2003 you can install the primary interop assemblies that are basically .net wrapped classes of Office. then you can add references to these assemblies and use Excel or word classes in your application. You can always use com interop to interact with Excel, but the Excel object model is quite complex and poorly documented, so it might not be an easy solution.
-
do you want to use Excel to do this or you want to write a method that does what Excel does? If you have Office 2003 you can install the primary interop assemblies that are basically .net wrapped classes of Office. then you can add references to these assemblies and use Excel or word classes in your application. You can always use com interop to interact with Excel, but the Excel object model is quite complex and poorly documented, so it might not be an easy solution.