Click here to Skip to main content
15,881,709 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
C#
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="SalesOrder.aspx.cs" Inherits="SalesOrder" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
    <script type="text/javascript" language="javascript">
        function GetTotal() {
            var val1 = document.getElementById('<%=txtq.ClientID%>').value;
            var val2 = document.getElementById('<%=txtp.ClientID%>').value;
            if (val1 != "" && val2 != "") {
                document.getElementById('<%=txttotal.ClientID%>').value = val1 * val2;
            }
        }        
    </script>
    <style type="text/css">
        .style9 {
            height: 34px;
        }
    </style>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder3" Runat="Server">
    <asp:Panel ID="Panel1" runat="server">        
        <asp:HyperLink ID="HyperLink12" runat="server" NavigateUrl="~/Customer.aspx">Customer Details        
        <asp:HyperLink ID="HyperLink13" runat="server" NavigateUrl="~/SalesOrder.aspx">Sales Order      
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
    <table>

<tr>
<td align="right">Customer ID</td>
<td>
    <asp:DropDownList ID="ddlcid" runat="server" DataSourceID="SqlDataSource1" 
        DataTextField="Customer_Id" DataValueField="Customer_Id" AppendDataBoundItems="true">
        <asp:ListItem>---select Customer id--- </asp:ListItem>   
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" 
        ConnectionString="<%$ ConnectionStrings:sqlserverConnectionString %>" 
        SelectCommand="SELECT [Customer_Id] FROM [CustomerTable_]">    
    </td>
</tr>
<tr>
<td align="right">Product Id</td>
<td>
    <asp:DropDownList ID="ddlpid" runat="server" DataSourceID="SqlDataSource2" 
        DataTextField="Productcode" DataValueField="Productcode" 
        AppendDataBoundItems="true" 
        onselectedindexchanged="ddlpid_SelectedIndexChanged" AutoPostBack="True">
        <asp:ListItem>---select Product Id---</asp:ListItem>
    
    <asp:SqlDataSource ID="SqlDataSource2" runat="server" 
        ConnectionString="<%$ ConnectionStrings:sqlserverConnectionString %>" 
        SelectCommand="SELECT [Productcode] FROM [Products]">
    </td>
</tr>
<tr>
<td align="right">Price</td>
<td>
    <asp:TextBox ID="txtp" runat="server">
    </td>
</tr>
<tr>
<td align="right">Quantity</td>
<td>
    <asp:TextBox ID="txtq" runat="server">
    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" 
        ErrorMessage="*" ForeColor="Red" ControlToValidate="txtq">
    </td>
</tr>
<tr>
<td align="right" class="style9">Total</td>
<td class="style9">
    <asp:TextBox ID="txttotal" runat="server">
    <asp:Button ID="add" runat="server" Text="add" OnClientClick="return GetTotal();" />
 </td>
</tr>
<tr>
<td align="right">Date Of Delivery</td>
<td>    
    <asp:TextBox ID="txtdate" runat="server">      
    </td>
</tr>
<tr>
<td colspan="2" align="center">
    <asp:Button ID="btnsubmit" runat="server" Text="Submit" 
        onclick="btnsubmit_Click" />
</td>
</tr>
</table>
Posted
Updated 1-May-14 22:25pm
v5
Comments
v.latha 2-May-14 4:33am    
I already installed the toolkit
v.latha 2-May-14 4:34am    
but when I'm taking the control to content page it showing error
Error Creating Control - ajaxtoolkit:calenderextenderUnknown server tag 'ajaxtoolkit:CalenderExtender'.
v.latha 2-May-14 4:39am    
see my web.config file is it right or not
v.latha 2-May-14 4:50am    
ya I used this register tag
v.latha 2-May-14 4:51am    
but now also it didn't take the control in content page

1 solution

<configuration>
<connectionstrings>
<add name="sqlserverConnectionString" connectionstring="Data Source=CKRBTECH\SQLEXPRESS;Initial Catalog=sqlserver;Integrated Security=True" providername="System.Data.SqlClient">

<system.web>
<compilation debug="true" targetframework="4.0">
<pages>
<controls>
<add tagprefix="ajaxtoolkit">
namespace="AjaxControlToolkit"
assembly="AjaxControlToolKit"/>



 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900