¸ñÇ¥ ¹®¼­ÀÇ ÁÖ¼Ò(URN)¸¦ ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù.

Àμö
: (¼Ó¼º ¹®ÀÚ¿­)
¼Ó¼º°ªÀº ¸ñÇ¥ ¹®¼­ÀÇ ÁÖ¼Ò(URN : Uniform Resource Name)¸¦ ³ªÅ¸³»´Â ¹®ÀÚ¿­ÀÌ´Ù.

ÀÌ ¼Ó¼ºÀº Àбâ/¾²±âÀÌ¸ç µðÆúÆ®°ªÀº ¾ø´Ù.

Ư±â

URNÀº URL. (¿µ¹®)WWW¿¡¼­ ÁÖ¼Ò¿¡ »ç¿ëÇÏ´Â URLÀº ÀϹÝÀûÀ¸·Î ƯÁ¤ ±â°èÀÇ Æ¯Á¤ ÆÄÀÏÀ» ÁöÁ¤Çϴ¿© À§Ä¡(location)¸¦ ¹Ý¿µÇϴµ¥ ¹ÝÇØ, URNÀº À§Ä¡ º¸´Ù´Â ÀÚ¿øÀ» ÀνÄÇÑ´Ù.

Àû¿ë
°³Ã¼scriptHTML±Ô°ÝIE
Âü°í
location, namespace, URL, URLUnencoded, URN

<HTML xmlns:t ="urn:schemas-microsoft-com:time">
<IMPORT namespace='otherNS' url='../object/exp/newTag.htc'>
<SCRIPT>
str='document.namespaces.length='+document.namespaces.length+'<BR>';
for (i=0;i< document.namespaces.length;i++){
  if (document.namespaces(i).urn){
    str+='document.namespaces('+i+').name=<FONT color=blue><B>'+document.namespaces(i).name+'</B></FONT><BR>';
    str+='<SPAN style=width:2em></SPAN>document.namespaces('+i+').urn=<FONT color=blue>';
    str+=document.namespaces(i).urn+'</FONT><BR>';
  }
}
document.write(str);
</SCRIPT>