■No51980 (まっち さん) に返信
> デフォルトは何フォントが適用されているのでしょうか?
ブラウザの設定次第かと思いますが、確認する術としては Computed Style を参照してみてはいかが
でしょうか。
<script type="text/javascript">
window.onload = alertFont;
function alertFont() {
var GridView1 = document.getElementById("GridView1");
var style = GridView1.currentStyle;
alert(style.fontFamily);
}
</script>