Question Get Source Code the Selected Text in the Webbrowser

estiente

New member
Joined
Mar 23, 2013
Messages
2
Programming Experience
5-10
Hey guys, i have a question.
I want to get source code the selected text in the webbrowser. How to make this?
 
It's highly likely that the reason you've had no reply (until now) is down to the fact that what you're after is generally not going to be possible for anything other than a basic web page with HTML.

Any site that is dynamically created using technology along the lines of ASP.Net uses client/server architecture - basically, what you see is separate to what's going on in the background. Web technologies take this a step further in that the server side of things generates a page of basic html that your browser can then display.... that basic html isn't going to give you any access to the code that generated it. Think of it as a painting - the paint on the canvas isn't going to tell you the colour of the artist's hair, or what he had for breakfast.

What is your goal? Why do you need to see the source? There's a chance we can point you in an alternate direction.
 
Back
Top