I have a webpage with the following code:
<td width="178>NAME:</td>
<td><select NAME="NAME" size="1" tabindex="1">
<option selected = true VALUE"">Please Specify</option>
<option VALUE=" Brown Dog">Brown Dog</option>
<option VALUE=" Blue Dog">Blue Dog</option>
<option VALUE=" Big Dog">Big Dog</option>
<option VALUE=" Bad Dog">Bad Dog</option>
...
</select>
</td>
</tr>
</tr>
This same exact code also resides in a number of other pages. When i update one page I have to update all of the other pages as well.
How can i code this information so it shows up in all of my webpages but only have to update it in one place?
Can I store this information in a file and call it in when the webpage is loaded?