Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
Y

yardly

@yardly
About
Posts
25
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • javascript
    Y yardly

    i tried every thing..... if i use refresh button it is not working.. i have given the Lblnote.text=""; in my reset button .. in reset button it is working nice... but if i press refresh icon in the browser it is not working...

    ASP.NET javascript

  • javascript
    Y yardly

    hi, lblnote.Text = "Your Profile Was Updated"; i using label to the show message... but if i press refresh button in the browser, the error message should disable from my aspx page... and also i tried in script: Page.RegisterStartupScript("as", " alert('Your Profile Was Updated')"); but it is showing exclamation symbol..... i dont want this symbol in my popup message box. plzany one tell me the answer... sorry to ask this tell how to replay message for u

    ASP.NET javascript tools help tutorial

  • javascript
    Y yardly

    hi, i am using this code in my asp.net with c# code behind.. Page.RegisterStartupScript("as", " alert('Your Profile Was Updated')"); while running this aspx.page i am getting Meaasage with Exclamation symbol.. what i need is i dont want the Exclamation symbol in my popup message box.. tell me the answer... regards, vidhya.s

    ASP.NET csharp javascript asp-net

  • Gridview with dropdown
    Y yardly

    i have loaded values in my dropdown list box... if i select the same value in to my gridview it should not allow tha same "PARTNUMBAR AND DESCRIPTION " from my database... i am having same discription name with different part number.... Wt i need is, It should not aloow the same part number and decsription inside my gridview textbox.. help me....

    ASP.NET database help

  • maintain my data in the firt page in paging concept
    Y yardly

    wt i need s i should not save first 10 datas iam having 100 pages... my page index is 10 ... if i enter the 10 values then i have to move to next page and enter the next 10 datas.... if i have to change any data in the first page then i have to move to first page is it right.... but my first page datas r getting clear.

    ASP.NET database

  • Paging
    Y yardly

    public void PageIndex_Changed(object src, GridViewPageEventArgs e) //{ // GridView1 .PageIndex = e.NewPageIndex; // int a = GridView1.PageCount; // GridView1.DataBind(); // BindGrid(); //} this s my coding

    ASP.NET tutorial

  • maintain my data in the firt page in paging concept
    Y yardly

    maintain my first 10 data in the firt page when i click the next page then the first 10 datas r erased... i want to maintain all the datas and save it in the database

    ASP.NET database

  • Paging
    Y yardly

    How to maintain the first page data when we click the next page...

    ASP.NET tutorial

  • sepatare the dropdoen values in the gridview textboxs
    Y yardly

    i have retun coding to bind the value from to gridview textbox.... if i select the dropddoewn value i am getting both the numeric and character value in a single gridview textbox... i need to display the numeric value in 1 txt box and char in another inside the gridview

    ASP.NET help

  • sepatare the dropdoen values in the gridview textboxs
    Y yardly

    I am having Numeric and character valuues in normal dropdown box .... noe i have to load the Numeric value in one gridview textbox and character in another GV textbox.. help me.

    ASP.NET help

  • gridview calculation
    Y yardly

    thanks for ur code link.... i need to add the gridview column and display the values in another column... how to do this

    ASP.NET help tutorial

  • gridview calculation
    Y yardly

    I have a Gridview which holds several columns containing Integer values. What I would like to be able to do is create another column called 'Total' which adds up the integer values within each row and shows the total within the end column.. help me how to do the calculation ....

    ASP.NET help tutorial

  • Gridview With Textbox
    Y yardly

    hi good morning.. private void BindGrid() { List items = new List(); for (int i = 0; i < 50; i++) { ItemEntry c = new ItemEntry(); items.Add(c); } grdPurEntry.DataSource = items; grdPurEntry.DataBind(); } public void PON_selectedIndexChanged(object src, EventArgs e) { string strPONumber; strPONumber = ddlpurchaseOrdernumber.SelectedItem.Text.ToString(); //BindData(); SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["connectionstring"].ToString()); SqlCommand cmd = new SqlCommand("select MachineName from tbl_PurchaseOrderMaster where Pur_Order_No='" + strPONumber + "'", con); con.Open(); SqlDataReader dr = cmd.ExecuteReader(); // ddlpurchaseOredernumber.Items.Clear(); while (dr.Read()) { txtMachineName.Text = dr["MachineName"].ToString(); //txtInvoiceNum.Text = dr["Invoice_No"].ToString(); } con.Close(); // Load Grid //string strPONumber; //strPONumber = ddlpurchaseOrdernumber.SelectedItem.Text.ToString(); string strPartNumber = ""; string strPartDescription = ""; string strOrderedQuantity = ""; //SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ToString()); SqlDataAdapter ad = new SqlDataAdapter("SELECT Part_Number,Part_Description,Ordered_Quantity FROM tbl_PurchaseOrderDetails where Pur_Order_No ='" + strPONumber + "'", con);// where MachineName='" + txtMachineName.Text + "'", con); DataSet ds = new DataSet(); ad.Fill(ds, "PurOrderNum"); DataTable dt = ds.Tables[0]; foreach (DataRow dr1 in dt.Rows) { strPartNumber = dr1["Part_Number"].ToString(); strPartDescription = dr1["Part_Description"].ToString(); strOrderedQuantity = dr1["Ordered_Quantity"].ToString(); } //string strPONumber; //strPONumber = ddlpurchaseOrdernumber.SelectedItem.Text.ToString(); foreach (GridViewRow row in grdPurEntry.Rows) { if (row.RowType == DataControlRowType.DataRow) { if (String.IsNullOrEmpty(((TextBox)row.FindControl("txtPartNumber")).Text)) { ((TextBox)row.FindCont

    ASP.NET database help

  • Gridview With Textbox
    Y yardly

    hi good morning.. private void BindGrid() { List items = new List(); for (int i = 0; i < 50; i++) { ItemEntry c = new ItemEntry(); items.Add(c); } grdPurEntry.DataSource = items; grdPurEntry.DataBind(); } public void PON_selectedIndexChanged(object src, EventArgs e) { string strPONumber; strPONumber = ddlpurchaseOrdernumber.SelectedItem.Text.ToString(); //BindData(); SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["connectionstring"].ToString()); SqlCommand cmd = new SqlCommand("select MachineName from tbl_PurchaseOrderMaster where Pur_Order_No='" + strPONumber + "'", con); con.Open(); SqlDataReader dr = cmd.ExecuteReader(); // ddlpurchaseOredernumber.Items.Clear(); while (dr.Read()) { txtMachineName.Text = dr["MachineName"].ToString(); //txtInvoiceNum.Text = dr["Invoice_No"].ToString(); } con.Close(); // Load Grid //string strPONumber; //strPONumber = ddlpurchaseOrdernumber.SelectedItem.Text.ToString(); string strPartNumber = ""; string strPartDescription = ""; string strOrderedQuantity = ""; //SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ToString()); SqlDataAdapter ad = new SqlDataAdapter("SELECT Part_Number,Part_Description,Ordered_Quantity FROM tbl_PurchaseOrderDetails where Pur_Order_No ='" + strPONumber + "'", con);// where MachineName='" + txtMachineName.Text + "'", con); DataSet ds = new DataSet(); ad.Fill(ds, "PurOrderNum"); DataTable dt = ds.Tables[0]; foreach (DataRow dr1 in dt.Rows) { strPartNumber = dr1["Part_Number"].ToString(); strPartDescription = dr1["Part_Description"].ToString(); strOrderedQuantity = dr1["Ordered_Quantity"].ToString(); } //string strPONumber; //strPONumber = ddlpurchaseOrdernumber.SelectedItem.Text.ToString(); foreach (GridViewRow row in grdPurEntry.Rows) { if (row.RowType == DataControlRowType.DataRow) { if (String.IsNullOrEmpty(((TextBox)row.FindControl("txtPartNumber")).Text)) { ((TextBox)row.FindCont

    ASP.NET database help

  • Gridview With Textbox
    Y yardly

    did u recevied my coding

    ASP.NET database help

  • Gridview With Textbox
    Y yardly

    this s my gridview desingn:

    ASP.NET database help

  • Gridview With Textbox
    Y yardly
    ASP.NET database help

  • Gridview With Textbox
    Y yardly

    i have binded gridview like this

    ASP.NET database help

  • Gridview With Textbox
    Y yardly

    i am getting this error: procedure r function not specified for @part_Number..

    ASP.NET database help

  • Gridview With Textbox
    Y yardly

    no i didnt bound with datasource

    ASP.NET database help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups