| À̸§ | |
| Ãâ»ý | |
| »ç¸Á | |
| Å»ý | |
| ¾à·Â |
datasrc¿Í datafld ¾ÖÆ®¸®ºäÆ®µé¿¡ ÀÇÇÏ¿© µ¥ÀÌÅ͸¦ °¡Á®¿Í SPAN ¿¤·¹¸àÆ®µé¿¡ µð½ºÇ÷¹ÀÌÇÑ´Ù.
<STYLE>input.but {font-weight:bold;font-size:14;width:80}</STYLE>
<SCRIPT>
function showAll(obj){
butFirst.disabled=butPrev.disabled=butLast.disabled=butNext.disabled=false;
if (obj.id=='butFirst'){
DBobj.recordset.MoveFirst();
butFirst.disabled=butPrev.disabled=true;
} else if (obj.id=='butPrev'){
DBobj.recordset.MovePrevious();
if (DBobj.recordset.BOF){
DBobj.recordset.MoveFirst();
butFirst.disabled=butPrev.disabled=true;
}
} else if (obj.id=='butLast'){
DBobj.recordset.MoveLast();
butLast.disabled=butNext.disabled=true;
} else if (obj.id=='butNext'){
DBobj.recordset.MoveNext();
if (DBobj.recordset.EOF){
DBobj.recordset.MoveLast();
butLast.disabled=butNext.disabled=true;
}
}
}
</SCRIPT>
<DIV style="display:none">
<OBJECT id="DBobj" classid="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83" height=0 width=0>
<PARAM name="DataURL" value="composer.csv">
<PARAM name="UseHeader" value="True">
<PARAM name="TextQualifier" value="'">
</OBJECT>
</DIV>
<TABLE border=1 width=700 cellpadding=3 cellspacing=0 align=center>
<COL style="font-weight:bold;color:teal;width:50"><COL style="color:blue">
<TR>
<TD nowrap>À̸§</TD>
<TD><SPAN dataSrc="#DBobj" dataFld="compsr_first"></SPAN>
<SPAN dataSrc="#DBobj" dataFld="compsr_last"></SPAN></TD>
</TR>
<TR>
<TD>Ãâ»ý</TD>
<TD><SPAN dataSrc="#DBobj" dataFld="compsr_birth"></SPAN></TD>
</TR>
<TR>
<TD>»ç¸Á</TD>
<TD><SPAN dataSrc="#DBobj" dataFld="compsr_death"></SPAN></TD>
</TR>
<TR>
<TD>Å»ý</TD>
<TD><SPAN dataSrc="#DBobj" dataFld="origin"></SPAN></TD>
</TR>
<TR>
<TD VALIGN=top>¾à·Â</TD>
<TD><DIV dataSrc="#DBobj" dataFld="bio" dataFormatas="HTML" style="height:2.4em"></DIV></TD>
</TR>
</TABLE>
<INPUT id="butFirst" type="button" value="óÀ½" onclick="showAll(this)" class="but">
<INPUT id="butPrev" type="button" value="ÀÌÀü" onclick="showAll(this)" class="but">
<INPUT id="butNext" type="button" value="´ÙÀ½" onclick="showAll(this)" class="but">
<INPUT id="butLast" type="button" value="ÃÖÁ¾" onclick="showAll(this)" class="but">