I have a ASP.NET website. On one of my webforms/page (.aspx), I need to retrieve a value via HttpWebRequest. Due to high traffic and tying up ASP.NET's resources, I do not want to run this on my web server. I would like to create a WinForms/Active X program that can retrieve this value (retrieved value from HttpWebRequest) and place it accordingly in the client's webpage (.aspx) -- more specifically, a textbox on the webpage.
Are Active X controls still in existence for Visual Studio 2008? If Active X controls cannot be created to do said task, what are my other options?
If still possible, Links/Examples for creating some type of program in Visual Studio 2008?