[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.

Question
[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!

7.2

InsertItemTemplate textbox value passes null to ObjectDataSource

Asked by dcadler in Programming for ASP.NET, Microsoft Visual C#.Net, Visual Studio

Tags: ObjectDataSource, InsertItemTemplate, Null value

I have an aspx file that is using an ObjectDataSource. In the aspx form, I am using item templates. I have a textbox control in the InsertItemTemplate that I have have the text value bound to a database field, "DXCode". In this same InsertItemTemplate, I have other textbox fields bound in the same way to other database fields. When I click to insert the record, the value in the textbox for "DXCode" is always null but the other fields pass their values just fine.

I tried adding an InsertParameter in the ObjectDataSource definition and used the ObjectDataSource's Inserting event to put the value in the textbox into the InsertParameter value. I can see that the value is in the textbox and passed to the InsertParameter item's default value, but it is still null when it gets to the Dababase class InsertRecord code.


I use a class called DXCodeDetails.cs that is used to hold the record data and a class called DXCodeDB.cs that has all of the database interface code. The DXCodeDetails class is working OK because I can view existing records using it.I can also edit existing records. I just can not get the DXCode value to pass through to the DXCodeDB.cs class when I use the InsertItemTemplate.

I breakpoint the code in the DXCodeDB.cs file at the start of the Insert record code and I can see that all of the values except the DXCode value are passed in, the DXCode value is null.

I am stumped at this point.

Any ideas?


Dave


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:
Here is the Object Datasource code
 
    <asp:ObjectDataSource 
        ID="sourceDXCode" 
        runat="server" 
        TypeName="DXCodeDB" 
        SelectMethod="GetDXCode" 
        OnSelecting="sourceDXCode_Selecting" 
        OnSelected="sourceDXCode_Selected"
        DataObjectTypeName="DXCodeDetails" 
        UpdateMethod="UpdateDXCode" 
        OnUpdating="sourceDXCode_Updating" 
        InsertMethod="InsertDXCode" 
        OnInserting="sourceDXCode_Inserting" 
        OnInserted="sourceDXCode_Inserted"
        DeleteMethod="DeleteDXCode" 
        OldValuesParameterFormatString="original_{0}"
        onDeleted="sourceDXCode_Deleted">
        <SelectParameters>
            <asp:ControlParameter ControlID="ddlDXCodes" Name="DXCode" PropertyName="SelectedValue" />        
        </SelectParameters>
        <InsertParameters>
            <asp:Parameter Direction="Input" Name="DXCode" Type="String" />
        </InsertParameters>
 
    </asp:ObjectDataSource>
 
Here is the textfield definition in the InsertItemTemplate
 
                                    <asp:TextBox ID="txtInsert_Code" Text="<%# Bind('DXCode') %>" runat="server" cssClass="frmTextBox" OnLoad="txtInsert_Code_Load"></asp:TextBox>
[+][-]01/23/09 07:03 AM, ID: 23449485Accepted Solution

View this solution now by starting your 30-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, Microsoft Visual C#.Net, Visual Studio
Tags: ObjectDataSource, InsertItemTemplate, Null value
Sign Up Now!
Solution Provided By: DropZone
Participating Experts: 2
Solution Grade: A
 
[+][-]01/23/09 06:00 AM, ID: 23448914Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 06:01 AM, ID: 23448924Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 06:15 AM, ID: 23449026Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01/23/09 06:28 AM, ID: 23449126Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 06:33 AM, ID: 23449179Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 06:40 AM, ID: 23449238Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 06:42 AM, ID: 23449267Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01/23/09 06:47 AM, ID: 23449323Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01/23/09 06:52 AM, ID: 23449371Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 06:52 AM, ID: 23449378Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01/23/09 06:55 AM, ID: 23449407Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01/23/09 07:02 AM, ID: 23449468Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01/23/09 07:31 AM, ID: 23449740Assisted Solution

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

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

 
[+][-]01/23/09 07:48 AM, ID: 23449927Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 07:53 AM, ID: 23449976Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 08:15 AM, ID: 23450242Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 08:28 AM, ID: 23450381Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 08:34 AM, ID: 23450465Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 09:10 AM, ID: 23450785Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01/23/09 09:29 AM, ID: 23450961Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/09 09:52 AM, ID: 23451169Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]01/23/09 10:14 AM, ID: 23451372Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 - Hierarchy / EE_QW_3_20080625