ASP.Netはまだ新しいですが、いくつか質問があります。jQuery-ajaxクロスドメインポリシーについて知っていますが、このjsファイルをASPXページに関連付けている場合は何かできますか?つまり、ASPではWebClient
またはHttpWebRequest
/ Response
(クロスドメイン)を使用できるので、jQueryでそれを使用するための解決策があるのでしょうか?
これまでのところ、私は思いついただけです:
WebClient wClient = new WebClient()
byte[] arr = wClient.DownloadData("http://www.google.com/");
Response.Write("<div id='placeholder' >");
Response.Write(System.Text.Encoding.UTF8.GetString(arr));
Response.Write("</div>");
そしてjQueryで
var c = $('#placeholder').find('#content'); //assuming that there is some tag with id=content
$('body').append(c)
よりエレガントな解決策はありますか?いくつかのチュートリアルを知っていますか?