c# - Add an aspx page with code-behind to a compiled ASP.Net site -
We have an ASP. The net application is done by a third party, which uses third-party controls The problem is that some of these controls do not work with anything more than IE8. I have been asked to know about this and an attempt has been made to remove them (the company is upgrading to IE 11).
Unfortunately, the source code is not available; There is no code behind which I can work. And controls are no longer supported.
A solution that I can think of is adding a new .aspx page and using inline code / javascript / code-behind to return those functionality which are not working.
This is my question: is this possible? Or is there any other way that I can solve it, lack of change of application with new ones?
Thank you.
I ran into a similar problem some time ago and it was nit through a decompiler tool Decompiling the controls by making necessary changes such as reflectors, recompiling and uploading to the server.
Comments
Post a Comment