|
[x]
Posted via EE Mobile
|
|
| Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
|
|
|
|
Asked by MrBillLee in Active Server Pages (ASP), Extensible Markup Language (XML)
I have the following ASP form that consists of serveral drop-down menus that I am needing to save the selected data as an XML file. The XML file will need to be continuously updated and saved as more users submit their forms. Can someone please help me with coding the ASP functionality to make this happen? I am not an ASP coder, and I am stuck at the part where I'll need to instantiate the Microsoft XMLDOM object.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
|
<form method="POST" action="date1-region1-process-form.asp">
<!--FieldStart: 1-->
<!--Field Name 1: IT :-->
<tr><td valign=top><!--REQUIRED--></td><td align=left valign=top class="black1115">IT:</td>
<td align=left valign=top class="black1115">
<select name="ITDateTime">
<option value="ITDateTime1">Monday, Dec. 21st: Noon CST</option>
<option value="ITDateTime2">Tuesday, Dec. 22nd: 4 pm CST</option>
</select>
</td>
</tr>
<!--FieldEnd: 1-->
<!--FieldStart: 2-->
<!--Field Name 2: HR :-->
<tr><td valign=top><!--REQUIRED--></td><td align=left valign=top class="black1115">HR:</td>
<td align=left valign=top class="black1115">
<select name="HRDateTime">
<option value="HRDateTime1">Ultipro/Time Keeping - Monday, Dec. 21st: Noon CST</option>
<option value="HRDateTime2">Ultipro/Time Keeping - Tuesday, Dec. 22nd: 4 pm CST</option>
<option value="HRDateTime3">Manager Training - Monday, Dec. 21st: Noon CST</option>
<option value="HRDateTime4">Manager Training - Tuesday, Dec. 22nd: 4 pm CST</option>
</select>
</td>
</tr>
<!--FieldEnd: 2-->
<!--FieldStart: 3-->
<!--Field Name 3: TranSource :-->
<tr><td valign=top><!--REQUIRED--></td><td align=left valign=top class="black1115">TranSource:</td>
<td align=left valign=top class="black1115">
<select name="TranSourceDateTime">
<option value="TranSourceDateTime1">Monday, Dec. 21st: Noon CST</option>
<option value="TranSourceDateTime2">Tuesday, Dec. 22nd: 4 pm CST</option>
</select>
</td>
</tr>
<!--FieldEnd: 3-->
<!--FieldStart: 4-->
<!--Field Name 4: Property Management :-->
<tr><td valign=top><!--REQUIRED--></td><td align=left valign=top class="black1115">Property Management:</td>
<td align=left valign=top class="black1115">
<select name="PMDateTime">
<option value="PMDateTime1">PM Admin Overview - Monday, Dec. 21st: Noon CST</option>
<option value="PMDateTime2">PM Admin Overview - Tuesday, Dec. 22nd: 4 pm CST</option>
<option value="PMDateTime3">PM Policies 1 - Monday, Dec. 21st: Noon CST</option>
<option value="PMDateTime4">PM Policies 1 - Tuesday, Dec. 22nd: 4 pm CST</option>
<option value="PMDateTime5">PM Policies 2 - Monday, Dec. 21st: Noon CST</option>
<option value="PMDateTime6">PM Policies 2 - Tuesday, Dec. 22nd: 4 pm CST</option>
</select>
</td>
</tr>
<!--FieldEnd: 4-->
<!--FIELDROW-->
<!--HIDDENFORM-->
<tr><td></td><td align=right></td><td align=left><input type="submit" name="submit" value="Submit"></td></tr>
</table>
</form>
|
20091021-EE-VQP-81 - Hierarchy / EE_QW_3_20080625