How To Insert USERID (Type: Raw, Size: 16) from Ora_aspnet_users to Another Table

好久不见. 提交于 2020-01-16 19:15:32

问题


Sorry I cannot upload the screenshot due to the limited number of my reputation since I am a newbie here.

ora_aspnet_user table with column name userid with datatype of Raw(16)
link to
Instruct Table with userid with datatype of Raw (16) - Other columns is ID (Auto Trigger No), Command (Varchar2 = 256)

MY INLINE ASPX CODE:

<form id="form1" runat="server">
    <div>
        <asp:DetailsView ID="DetailsView1" runat="server" AutoGenerateRows="False" DataSourceID="SqlDataSource1"
            DefaultMode="Insert" Height="50px" Width="125px">
            <Fields>
                <asp:BoundField DataField="ID" HeaderText="ID" SortExpression="ID" Visible="False" />
                <asp:BoundField DataField="COMMAND" HeaderText="COMMAND" SortExpression="COMMAND" />
                <asp:TemplateField HeaderText="USERID">
                    <InsertItemTemplate>
                        <asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="SqlDataSource2"
                            DataTextField="USERNAME" DataValueField="USERID">
                        </asp:DropDownList>
                   </InsertItemTemplate>
                </asp:TemplateField>
                <asp:CommandField ShowInsertButton="True" />
            </Fields>
        </asp:DetailsView>
        <asp:SqlDataSource ID="SqlDataSource1" runat="server" 
            ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
            ProviderName="<%$ ConnectionStrings:ConnectionString.ProviderName %>" 
            InsertCommand="INSERT INTO INSTRUCT (COMMAND, USERID) VALUES (:COMMAND, :USERID)">
            <InsertParameters>
                <asp:Parameter Name="COMMAND" Type="String" />
                <asp:Parameter Name="USERID" DbType="Binary" Size="16" />
            </InsertParameters>
        </asp:SqlDataSource>
        <asp:SqlDataSource ID="SqlDataSource2" runat="server" 
            ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
            ProviderName="<%$ ConnectionStrings:ConnectionString.ProviderName %>" 
            SelectCommand="SELECT USERID, USERNAME FROM ORA_ASPNET_USERS">
        </asp:SqlDataSource>
    </div>
    </form>
</body>
</html>

The above code will only insert the command textbox and but will not insert the USERID from the USERID dropdown.

I would really appreciate your help.

Thank you very much.


回答1:


Replace your datasource <InsertParameter> with this one, it might help you, because I don't have your source code I cannot test it locally, the problem could occur somewhere elese though:

<InsertParameters>
   <asp:ControlParameter ControlID="DropDownList1" PropertyName="SelectedValue" Name="USERID" Type="Byte"></asp:ControlParameter>
   <asp:ControlParameter ControlID="DropDownList1" PropertyName="SelectedItem.Text" Name="COMMAND" Type="String"></asp:ControlParameter>
</InsertParameters>


来源:https://stackoverflow.com/questions/24299108/how-to-insert-userid-type-raw-size-16-from-ora-aspnet-users-to-another-tabl

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!