Advertisement

08.04.2008 at 09:27AM PDT, ID: 23619532
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.0

FormView with dropdownlist + urgent!!

Asked by robbhill in Programming for ASP.NET, WebApplications

I have a formview control that is using a datasource control.
I have the need in the edititemtemplate to have several dropdownlists that are populated from other datasource controls.

The formview only seems to be built to handle controls that are all on the same ds control.  How do you overcome this?

I have pasted my code....please help.  If you look in the item template at the ddlItemNumber..you will see the dropdownlist that is using a secondary datasource control

ThanksStart Free Trial
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:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
<%@ Page Language="VB" MasterPageFile="~/OnyxShell.master" AutoEventWireup="false" CodeFile="RMAInfo.aspx.vb" Inherits="RMAInfo" title="Untitled Page" %>
 
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
 
 
<asp:FormView 
DataKeyNames="objectID" 
DataSourceID="dsRMAForm"
ID="frmRMA" 
runat="server" 
OnItemUpdated="RebindFormView"
CellPadding="4" 
ForeColor="#333333" 
AllowPaging="True" 
Font-Names="Verdana" 
 
>
<FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
<RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
<PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
<HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
 
<HeaderTemplate>
 
<asp:Label ID="lblHeader" runat="server" Text="RMA Tracking System" /> 
 
</HeaderTemplate>
 
   <ItemTemplate>
            <table border="0" width="100%">
                <tr>
                    <td >
                        <asp:Label ID="Label22" runat="server"  Font-Bold="true" Text="General Info:"></asp:Label><br /><hr /><br />
                        <asp:Label ID="Label1" runat="server" Text="Item Number:" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblItemNumber" runat="server" Text='<%# Eval("ItemNumber") %>'></asp:Label><br />                              
                        <asp:Label ID="Label4" runat="server" Text="RMA Number" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblRMANumber" runat="server" Text='<%# Eval("RMANumber") %>'></asp:Label><br />
                        <asp:Label ID="Label2" runat="server" Text="Serial Number:" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblSerial" runat="server" Text='<%# Eval("SerialNumber") %>'></asp:Label><br />
                        <asp:Label ID="Label6" runat="server" Text="Vendor ID:" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblVendor" runat="server" Text='<%# Eval("VendorID") %>'></asp:Label><br />
                        <asp:Label ID="Label5" runat="server" Text="Network:" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblNetwork" runat="server" Text='<%# eval("Network") %>'></asp:Label><br /><br />
                    </td>
                   
                </tr>
                <tr>
                    <td>                        
                        <asp:Label ID="Label24" runat="server" Font-Bold="true" Text="CH1 RMA Info"></asp:Label><br /><hr /><br />
                        <asp:Label ID="Label8" runat="server" Text="CH1 Tracking Number" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblCH1RMANumber" runat="server" Text='<%# eval("CH1RMANumber") %>'></asp:Label><br />
                        <asp:Label ID="Label13" runat="server" Text="CH1 FSR" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblFSR" runat="server" Text='<%# Eval("CH1FSR") %>'></asp:Label><br />                        
                        <asp:Label ID="Label11" runat="server" Text="CH1 RMA Request Date" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblCH1RequestDate" runat="server" Text='<%# Eval("CH1RMARequest") %>'></asp:Label><br />                    
                   </td>
               </tr>
               
               <tr>
                    <td>
                        <asp:Label ID="Label3" runat="server" Text="Tech Codes" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTechCodes" runat="server" Text='<%# Eval("TechProblemCodes") %>'></asp:Label><br /><br />
                    </td>
                    <td>
                        <asp:Label ID="Label9" runat="server" Text="Comments" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTechComments" runat="server" Text='<%# Eval("TechProblemComments") %>'></asp:Label><br /><br />
                   </td>
               </tr>
               
                <tr>
                
                    <td>
                         <asp:Label ID="Label25" runat="server"  Font-Bold="true" Text="Warehouse Testing:"></asp:Label><br /><hr /><br />
                    </td>
                </tr>     
                 <tr>
                   
                    <td> 
                        <asp:Label ID="Label15" runat="server" Text="Test Status" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTest" runat="server" Text='<%# eval("TestStatus") %>'></asp:Label><br />
                        <asp:Label ID="Label17" runat="server" Text="Test Date" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTestDate" runat="server" Text='<%# eval("EquipmentTest") %>'></asp:Label><br />
                    </td>
                </tr>
                <tr>
                    <td>
                        <asp:Label ID="Label7" runat="server" Text="Problem Codes" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblFailCodes" runat="server" Text='<%# eval("FailProblemCodes") %>'></asp:Label><br />
                    </td>
                    <td>
                        <asp:Label ID="Label12" runat="server" Text="Comments" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblFailcomments" runat="server" Text='<%# eval("FailProblemComments") %>'></asp:Label><br />
                   </td>
               </tr>
                 <tr>
                    <td >
                        <asp:Label ID="Label16" runat="server" Text="Repair Codes" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTechincolorRepairCodes" runat="server" Text='<%# eval("TechnicolorRepairCodes") %>'></asp:Label><br /><br />
                   </td>
                    <td>
                        <asp:Label ID="Label19" runat="server" Text="Comments" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTechnicolorRepairComments" runat="server" Text='<%# eval("TechnicolorRepairComments") %>'></asp:Label><br /><br />
                   </td>
               </tr>
                <tr>
                <td>
                        <asp:Label ID="Label10" runat="server" Text="Date Programmed" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblProgrammedDate" runat="server" Text='<%# eval("Programmed") %>'></asp:Label><br /><br />
                
                </td>
                </tr>               
                <tr>
                    <td>
                      
                        <asp:Label ID="Label26" runat="server" Font-Bold="true" Text="RMA Tracking:"></asp:Label><br /><hr /><br />
                        <asp:Label ID="Label18" runat="server" Text="RMA Request Date" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblRMARequestDate" runat="server" Text='<%# eval("RMARequested") %>'></asp:Label><br />                        
                        <asp:Label ID="Label14" runat="server" Text="Date Shipped" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblDateShipped" runat="server" Text='<%# eval("Shipped") %>'></asp:Label><br />
                        <asp:Label ID="Label21" runat="server" Text="RMA Recieved Date" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblRMARecievedDate" runat="server" Text='<%# eval("RMARecieved") %>'></asp:Label><br />                     
                        
                   </td>
               </tr>
               
                 <tr>
                    <td>
                        <asp:Label ID="Label20" runat="server" Text="Solution" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblRepairFacilitySolutionCodes" runat="server" Text='<%# eval("RepairFacilitySolutionCodes") %>'></asp:Label><br />
                    </td>
                    <td>
                        <asp:Label ID="Label23" runat="server" Text="Comments" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblRepairFacilitySolutionCcomments" runat="server" Text='<%# eval("RepairFacilitySolutionComments") %>'></asp:Label><br />
                   </td>
               </tr>         
              <asp:LinkButton ID="btnEdit" runat="server" CommandName="Edit" Text="Edit" />
            </table>
            <br />
            
          
        </ItemTemplate>
        <EditItemTemplate> 
  <table border="0" width="100%">
                <tr>
                    <td >
                        <asp:Label ID="Label22" runat="server"  Font-Bold="true" Text="General Info:"></asp:Label><br /><hr /><br />
                      
                        <asp:Label ID="Label1" runat="server" Text="Item Number:" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblItemNumber"  Visible="false" runat="server" Text='<%# bind("ItemNumber") %>'></asp:Label>
                        <asp:DropDownList ID="ddlItemNumber" runat="Server" AutoPostBack="true" DataSourceID="dsItemNumbers"
                         DataTextField="item/desc" DataValueField="ItemNmbr" EnableViewState="False">
                        <asp:ListItem></asp:ListItem>
                       </asp:DropDownList>
                       <asp:SqlDataSource ID="dsItemNumbers" runat="server" ConnectionString="<%$ ConnectionStrings:MWConnection %>"
                        DataSourceMode="DataReader"  SelectCommand="select rtrim(itemnmbr) 'ItemNmbr',rtrim(itemnmbr) + ' - ' + itemdesc 'item/desc'  from cms..iv00101 order by itemnmbr">
                       </asp:SqlDataSource>                             
                       
                        <asp:Label ID="Label4" runat="server" Text="RMA Number" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblRMANumber" runat="server" Text='<%# Eval("RMANumber") %>'></asp:Label><br />
                        <asp:Label ID="Label2" runat="server" Text="Serial Number:" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblSerial" runat="server" Text='<%# Eval("SerialNumber") %>'></asp:Label><br />
                        <asp:Label ID="Label6" runat="server" Text="Vendor ID:" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblVendor" runat="server" Text='<%# Eval("VendorID") %>'></asp:Label><br />               
                        <asp:Label ID="Label5" runat="server" Text="Network:" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblNetwork" runat="server" Text='<%# eval("Network") %>'></asp:Label><br /><br />
                    </td>
                   
                </tr>
                <tr>
                    <td>                        
                        <asp:Label ID="Label24" runat="server" Font-Bold="true" Text="CH1 RMA Info"></asp:Label><br /><hr /><br />
                        <asp:Label ID="Label8" runat="server" Text="CH1 Tracking Number" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblCH1RMANumber" runat="server" Text='<%# eval("CH1RMANumber") %>'></asp:Label><br />
                        <asp:Label ID="Label13" runat="server" Text="CH1 FSR" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblFSR" runat="server" Text='<%# Eval("CH1FSR") %>'></asp:Label><br />                        
                        <asp:Label ID="Label11" runat="server" Text="CH1 RMA Request Date" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblCH1RequestDate" runat="server" Text='<%# Eval("CH1RMARequest") %>'></asp:Label><br />                    
                   </td>
               </tr>
               
               <tr>
                    <td>
                        <asp:Label ID="Label3" runat="server" Text="Tech Codes" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTechCodes" runat="server" Text='<%# Eval("TechProblemCodes") %>'></asp:Label><br /><br />
                    </td>
                    <td>
                        <asp:Label ID="Label9" runat="server" Text="Comments" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTechComments" runat="server" Text='<%# Eval("TechProblemComments") %>'></asp:Label><br /><br />
                   </td>
               </tr>
               
                <tr>
                
                    <td>
                         <asp:Label ID="Label25" runat="server"  Font-Bold="true" Text="Warehouse Testing:"></asp:Label><br /><hr /><br />
                    </td>
                </tr>     
                 <tr>
                   
                    <td> 
                        <asp:Label ID="Label15" runat="server" Text="Test Status" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTest" runat="server" Text='<%# eval("TestStatus") %>'></asp:Label><br />
                        <asp:Label ID="Label17" runat="server" Text="Test Date" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTestDate" runat="server" Text='<%# eval("EquipmentTest") %>'></asp:Label><br />
                    </td>
                </tr>
                <tr>
                    <td>
                        <asp:Label ID="Label7" runat="server" Text="Problem Codes" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblFailCodes" runat="server" Text='<%# eval("FailProblemCodes") %>'></asp:Label><br />
                    </td>
                    <td>
                        <asp:Label ID="Label12" runat="server" Text="Comments" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblFailcomments" runat="server" Text='<%# eval("FailProblemComments") %>'></asp:Label><br />
                   </td>
               </tr>
                 <tr>
                    <td >
                        <asp:Label ID="Label16" runat="server" Text="Repair Codes" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTechincolorRepairCodes" runat="server" Text='<%# eval("TechnicolorRepairCodes") %>'></asp:Label><br /><br />
                   </td>
                    <td>
                        <asp:Label ID="Label19" runat="server" Text="Comments" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblTechnicolorRepairComments" runat="server" Text='<%# eval("TechnicolorRepairComments") %>'></asp:Label><br /><br />
                   </td>
               </tr>
                <tr>
                <td>
                        <asp:Label ID="Label10" runat="server" Text="Date Programmed" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblProgrammedDate" runat="server" Text='<%# eval("Programmed") %>'></asp:Label><br /><br />
                
                </td>
                </tr>               
                <tr>
                    <td>
                      
                        <asp:Label ID="Label26" runat="server" Font-Bold="true" Text="RMA Tracking:"></asp:Label><br /><hr /><br />
                        <asp:Label ID="Label18" runat="server" Text="RMA Request Date" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblRMARequestDate" runat="server" Text='<%# eval("RMARequested") %>'></asp:Label><br />                        
                        <asp:Label ID="Label14" runat="server" Text="Date Shipped" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblDateShipped" runat="server" Text='<%# eval("Shipped") %>'></asp:Label><br />
                        <asp:Label ID="Label21" runat="server" Text="RMA Recieved Date" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblRMARecievedDate" runat="server" Text='<%# eval("RMARecieved") %>'></asp:Label><br />                     
                        
                   </td>
               </tr>
               
                 <tr>
                    <td>
                        <asp:Label ID="Label20" runat="server" Text="Solution" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblRepairFacilitySolutionCodes" runat="server" Text='<%# eval("RepairFacilitySolutionCodes") %>'></asp:Label><br />
                    </td>
                    <td>
                        <asp:Label ID="Label23" runat="server" Text="Comments" Font-Bold="True"></asp:Label>
                        <asp:Label ID="lblRepairFacilitySolutionCcomments" runat="server" Text='<%# eval("RepairFacilitySolutionComments") %>'></asp:Label><br />
                   </td>
               </tr>         
              
            </table>
            <br />
           <tr>
 
<asp:LinkButton ID="lbUpdate" runat="server" CommandName="Update" Text="Update" />
<asp:LinkButton ID="lbCancel" runat="server" CommandName="Cancel" Text="Cancel" />
 
</EditItemTemplate>
 
</asp:FormView>
 
 
 
 
    <asp:SqlDataSource ID="dsRMAForm" runat="server"   
       ConnectionString="<%$ ConnectionStrings:MWConnection %>" 
       DeleteCommand="DELETE FROM [OnyxRMA] WHERE [objectID] = @objectID" 
       InsertCommand="INSERT INTO [OnyxRMA] ([ItemNumber], [SerialNumber], [Network], [VendorID], [CH1RMANumber], [CH1FSR], [RMANumber], [TestStatus], [sysUser], [TechProblemCodes], [TechProblemComments], [FailProblemCodes], [FailProblemComments], [TechnicolorRepairCodes], [TechnicolorRepairComments], [RepairFacilitySolutionCodes], [RepairFacilitySolutionComments], [CH1RMARequest], [EquipmentTest], [Programmed], [Shipped], [RMARequested], [RMARecieved], [sysLastUpdate], [status]) VALUES (@ItemNumber, @SerialNumber, @Network, @VendorID, @CH1RMANumber, @CH1FSR, @RMANumber, @TestStatus, @sysUser, @TechProblemCodes, @TechProblemComments, @FailProblemCodes, @FailProblemComments, @TechnicolorRepairCodes, @TechnicolorRepairComments, @RepairFacilitySolutionCodes, @RepairFacilitySolutionComments, @CH1RMARequest, @EquipmentTest, @Programmed, @Shipped, @RMARequested, @RMARecieved, @sysLastUpdate, @status)" 
       UpdateCommand="UPDATE [OnyxRMA] SET [ItemNumber] = @ItemNumber, [SerialNumber] = @SerialNumber, [Network] = @Network, [VendorID] = @VendorID, [CH1RMANumber] = @CH1RMANumber, [CH1FSR] = @CH1FSR, [RMANumber] = @RMANumber, [TestStatus] = @TestStatus, [sysUser] = @sysUser, [TechProblemCodes] = @TechProblemCodes, [TechProblemComments] = @TechProblemComments, [FailProblemCodes] = @FailProblemCodes, [FailProblemComments] = @FailProblemComments, [TechnicolorRepairCodes] = @TechnicolorRepairCodes, [TechnicolorRepairComments] = @TechnicolorRepairComments, [RepairFacilitySolutionCodes] = @RepairFacilitySolutionCodes, [RepairFacilitySolutionComments] = @RepairFacilitySolutionComments, [CH1RMARequest] = @CH1RMARequest, [EquipmentTest] = @EquipmentTest, [Programmed] = @Programmed, [Shipped] = @Shipped, [RMARequested] = @RMARequested, [RMARecieved] = @RMARecieved, [sysLastUpdate] = @sysLastUpdate, [status] = @status WHERE [objectID] = @objectID">      
        <DeleteParameters>
            <asp:Parameter Name="objectID" Type="Int32" />
        </DeleteParameters>
        <UpdateParameters>
            <asp:Parameter Name="ItemNumber" Type="String" />
            <asp:Parameter Name="SerialNumber" Type="String" />
            <asp:Parameter Name="Network" Type="String" />
            <asp:Parameter Name="VendorID" Type="String" />
            <asp:Parameter Name="CH1RMANumber" Type="String" />
            <asp:Parameter Name="CH1FSR" Type="String" />
            <asp:Parameter Name="RMANumber" Type="String" />
            <asp:Parameter Name="TestStatus" Type="String" />
            <asp:Parameter Name="sysUser" Type="String" />
            <asp:Parameter Name="TechProblemCodes" Type="String" />
            <asp:Parameter Name="TechProblemComments" Type="String" />
            <asp:Parameter Name="FailProblemCodes" Type="String" />
            <asp:Parameter Name="FailProblemComments" Type="String" />
            <asp:Parameter Name="TechnicolorRepairCodes" Type="String" />
            <asp:Parameter Name="TechnicolorRepairComments" Type="String" />
            <asp:Parameter Name="RepairFacilitySolutionCodes" Type="String" />
            <asp:Parameter Name="RepairFacilitySolutionComments" Type="String" />
            <asp:Parameter Name="CH1RMARequest" Type="DateTime" />
            <asp:Parameter Name="EquipmentTest" Type="DateTime" />
            <asp:Parameter Name="Programmed" Type="DateTime" />
            <asp:Parameter Name="Shipped" Type="DateTime" />
            <asp:Parameter Name="RMARequested" Type="DateTime" />
            <asp:Parameter Name="RMARecieved" Type="DateTime" />
            <asp:Parameter Name="sysLastUpdate" Type="DateTime" />
            <asp:Parameter Name="status" Type="String" />
            <asp:Parameter Name="objectID" Type="Int32" />
        </UpdateParameters>
        <InsertParameters>
            <asp:Parameter Name="ItemNumber" Type="String" />
            <asp:Parameter Name="SerialNumber" Type="String" />
            <asp:Parameter Name="Network" Type="String" />
            <asp:Parameter Name="VendorID" Type="String" />
            <asp:Parameter Name="CH1RMANumber" Type="String" />
            <asp:Parameter Name="CH1FSR" Type="String" />
            <asp:Parameter Name="RMANumber" Type="String" />
            <asp:Parameter Name="TestStatus" Type="String" />
            <asp:Parameter Name="sysUser" Type="String" />
            <asp:Parameter Name="TechProblemCodes" Type="String" />
            <asp:Parameter Name="TechProblemComments" Type="String" />
            <asp:Parameter Name="FailProblemCodes" Type="String" />
            <asp:Parameter Name="FailProblemComments" Type="String" />
            <asp:Parameter Name="TechnicolorRepairCodes" Type="String" />
            <asp:Parameter Name="TechnicolorRepairComments" Type="String" />
            <asp:Parameter Name="RepairFacilitySolutionCodes" Type="String" />
            <asp:Parameter Name="RepairFacilitySolutionComments" Type="String" />
            <asp:Parameter Name="CH1RMARequest" Type="DateTime" />
            <asp:Parameter Name="EquipmentTest" Type="DateTime" />
            <asp:Parameter Name="Programmed" Type="DateTime" />
            <asp:Parameter Name="Shipped" Type="DateTime" />
            <asp:Parameter Name="RMARequested" Type="DateTime" />
            <asp:Parameter Name="RMARecieved" Type="DateTime" />
            <asp:Parameter Name="sysLastUpdate" Type="DateTime" />
            <asp:Parameter Name="status" Type="String" />
        </InsertParameters>
   </asp:SqlDataSource>
</asp:Content>
[+][-]08.06.2008 at 12:47PM PDT, ID: 22174290

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]08.06.2008 at 01:03PM PDT, ID: 22174483

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Programming for ASP.NET, WebApplications
Sign Up Now!
Solution Provided By: robbhill
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20081112-EE-VQP-42 / EE_QW_EXPERT_20070906