c# - How do I turn a web-based calculator into a callable program? -
there free, online calculator on web page want access c# program. calculator simple -- html table. there no javascript or flash. want able turn page method can call. method presumably call web page, enter appropriate numbers, read result, , return result.
what best way this?
i try loading web page webbrowser
class, if it's server side calculator should figure out get/post parameters give input , choose desired functionality (you analyzing html source) , request answer page. if client side calculator, should use dom parser (look @ htmldocument
class).
if calculator simple, consider re-implementing or try find pre-written component, think should easier (you have javascript source in case of client side calculator).
Comments
Post a Comment