If I'm using a .NET WebBrowser control, and I dynamically populate the HTML, JS content, what exactly are the rules for AJAX cross-domain requests? I know I don't technically have a domain since it's local content, but I'm not sure how the browser handles this.
|
|
|
First of all, make sure you know what you're doing and the possibility for XSS attacks before you do this. It is possible to have cross-domain AJAX with
e.g:
The
So that the function can access the data. |
||||
|
|
|
I know I don't technically have a domain since it's local content, but I'm not sure how the browser handles this. |
|||
|
|