1

Tested with IE9 and Firefox, problem does not occur in Firefox.

I am using

<object data="/generatepdf/docid=23" width="960" height="1360"></object>

to embed a pdf, and when I break into the server code of the generator or check the weblog, I can see that the data url is always being called exactly three times for one single request - generating the same pdf three times.

When I replace the same thing with

<iframe src="/generatepdf/docid=23" width="960" height="1360"></iframe>

then I do not get this weird effect. But I like the way displays better, no scrollbars and the pdf seems to get more control (a toolbar that appears on mouseover), plus the iframe sometimes overlaps with an autocomplete.


Vim: Why $ for end of line?

I'm new to Vim and am curious as to why $ would be used to go to the end of the line. So, for example, 0 taking me to the beginning makes at least some sort of sense (first number on keyboard goes to first letter of line---understandable).

Is there any logic behind $ or is it just totally arbitrary?

I was thinking $tart, until I remember it took me to the end!

Thanks!

4

2 に答える 2

1

答えはここにあります(ピートのコメント):

MVC ファイルストリームの複数呼び出し

IE の動作は「設計による」ものであり、最初にコンテンツ タイプを特定し (useragent = "contype" かどうかを確認し、データなしでドキュメントを返すことでサーバーで簡単に検出できます)、次にドキュメントをもう一度読み込みます。その匂いのためだけに(または、少なくともこの2番目のgetを取り除く方法をまだ決定できていませんでした-リファラーが変更されているため、役立つかもしれません)、最後に3番目の呼び出しでドキュメントをロードします. KB には IE 5.5 までのこの動作が記載されていますが、IE 8 + 9 でも同じことが見られます。

于 2013-10-24T15:21:46.737 に答える