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
I

indiaone

@indiaone
About
Posts
77
Topics
51
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Merging DataTable Manualy
    I indiaone

    becuase database not on same machine so i can not put join in stored procedure.so what i am doing.get all data from all database and merge then creating dataview on merged data and fillter it. thanks

    C# database performance help code-review

  • Merging DataTable Manualy
    I indiaone

    Hi, I am getting more than one Table from different DataBase and manualy marging into one table. this procedure taking more time.so i need to improve performance. if i use DataTable.Merge method it's merging.it's add new row in same table. can one help me Thanks

    C# database performance help code-review

  • How to add new row dynamic into dataset
    I indiaone

    Hi, thanks for reply. I am doing like this Suppose i am inserting two records.then first it's insert blank row then insert the next record. i am getting why? My Code:- DataRow dr = dsCostAdminDetails.Tables[0].NewRow(); dr.Table.Columns["date"].DefaultValue = Convert.ToString( dtDate.AddDays(-lngTotalDays).ToShortDateString()); dsCostAdminDetails.Tables[0].Rows.InsertAt(dr, bteCounter);

    ASP.NET tutorial

  • How to add new row dynamic into dataset
    I indiaone

    Hi, How to add new row dynamic into dataset. thanks

    ASP.NET tutorial

  • How display like that in gridview?
    I indiaone

    thanks for reply can you explain it thanks

    ASP.NET database help tutorial question

  • How display like that in gridview?
    I indiaone

    Hi. From Database i m getting data in this format. CAC PAT A 12/03/07 CAC PAT A 12/04/07 CAC PAT A 12/05/07 CMP CAT B 11/03/07 CMP CAT B 11/06/07 CMP CAT B 11/08/07 CPL AMT C 10/01/07 CPL AMT C 10/04/07 CPL AMT C 10/06/07 I want to display like that CAC PAT A 12/03/07 12/04/07 12/05/07 CMP CAT B 11/03/07 11/06/07 11/08/07 CPL AMT C 10/01/07 10/04/07 10/06/07 How to do ? Help me Thanks

    ASP.NET database help tutorial question

  • How to Filter gridview?
    I indiaone

    hi thanks for reply. but i m doing modification also. so want that functionality using gridview only. plz explain it thanks

    ASP.NET database help tutorial question

  • How to Filter gridview?
    I indiaone

    Hi. From Database i m getting data in this format. CAC PAT A 12/03/07 CAC PAT A 12/04/07 CAC PAT A 12/05/07 CMP CAT B 11/03/07 CMP CAT B 11/06/07 CMP CAT B 11/08/07 CPL AMT C 10/01/07 CPL AMT C 10/04/07 CPL AMT C 10/06/07 I want to display like that CAC PAT A 12/03/07 12/04/07 12/05/07 CMP CAT B 11/03/07 11/06/07 11/08/07 CPL AMT C 10/01/07 10/04/07 10/06/07 How to do ? Help me Thanks

    ASP.NET database help tutorial question

  • HOw to dp URL encoding in asp.net
    I indiaone

    HOw to dp URL encoding in asp.net

    ASP.NET csharp asp-net tutorial

  • Files/Copy%20of%20name516.xls getting this error when opening excel file from the gridview.
    I indiaone

    Hi. In mygridview i m displaying one column called Creative AS link This column contain different file path when i click on the link it should open that file store in the client machine but it's not opening only excel file and giving this error "Files/Copy%20of%20name516.xls" Thanks

    ASP.NET help

  • problem with Gridview header checkbox and checkbox column
    I indiaone

    i have a master page and content page in content page i have a girdview inside gridview headerRow i have CheckBox and checkbox column when user click header checkbox then allcheck box in the column should check and when header checkbox uncheck then all checkbox in the column should uncheck.

    ASP.NET help

  • select a file from one location and into another location
    I indiaone

    thanks for reply. yes,it's in the server can you explain about it. thanks

    ASP.NET tutorial

  • select a file from one location and into another location
    I indiaone

    HI, I want like 'select a file from one location and into another location' this functionality should be inside gridview and when user edit the gridview row he can change the location of the file and if user want to view the file he need to click on the link means the file path it's self as link. it's possible.if it's then please provide the code or example. Note:-This is web application. thanks

    ASP.NET tutorial

  • Which one is fast ,If DataSet store in Session or HashTable or Data Dictionary
    I indiaone

    HI, Which one is fast ,If DataSet store in Session or HashTable or Data Dictionary Thanks

    ASP.NET

  • Problem with gridview
    I indiaone

    Hi, In Grid view header i putted one checkbox and inside gridview also having checkbox and one button outside the grid. when i click button it's give me dgridview header checkbox check or not. but it's giving me null. this code giving me null. CheckBox chkAllDelete = (CheckBox)GridView1.HeaderRow.FindControl("chkAll"); when i m trying to find this control.i m getting null value. my code: This code in Html part var counter = 0; var pattern = '^GridView1'; // Get the checkboxes inside the Gridview which is part of the template column function GetChildCheckBoxCount() { var checkBoxCount = 0; var elements = document.getElementsByTagName("INPUT"); for(i=0; i<elements.length;i++) { if(IsCheckBox(elements[i]) && IsMatch(elements[i].id)) checkBoxCount++; } return parseInt(checkBoxCount); } // A function that checks if the checkboxes are the one inside the GridView function IsMatch(id) { var regularExpresssion = new RegExp(pattern); if(id.match(regularExpresssion)) return true; else return false; } function IsCheckBox(chk) { if(chk.type == 'checkbox') return true; else return false; } function AttachListener() { var elements = document.getElementsByTagName("INPUT"); for(i=0; i< elements.length; i++) { if( IsCheckBox(elements[i]) && IsMatch(elements[i].id)) { AddEvent(elements[i],'click',CheckChild); } } } function CheckChild(e) { var evt = e || window.event; var obj = evt.target || evt.srcElement if(obj.checked) { if(counter < GetChildCheckBoxCount()) { counter++; } } else { if(counter > 0) { counter--; } } if(counter == GetChildCheckBoxCount()) { document.getElementById("chkAll").checked = true; } else if(counter < GetChildCheckBoxCount()) { document.getElementById("chkAll").checked = false; } } function AddEvent(obj, evType, fn) { if (obj.addEventListener) { obj.addEventListener(evType, fn, true); return true; } else if (obj.attachEvent) { </x-turndown>

    ASP.NET regex html css help

  • Asp.net2.0
    I indiaone

    Hi, I am new to this . i m binding gridview with database not using SqldataSource tool. can u give the some example or sample projetc. Thanks

    ASP.NET csharp asp-net database wpf wcf

  • Asp.Net 2.0 master page
    I indiaone

    Hi I am new master page concept.can any one help about this. any sample projetc and good tutorial. thanks Asif

    ASP.NET csharp asp-net help tutorial

  • why we using properties
    I indiaone

    can you explain i m new to this

    C#

  • why we using properties
    I indiaone

    why we using properties

    C#

  • How to validate decimal value
    I indiaone

    Hi, In my programe i am one using datagrid. User can enter decimal value and i am validating the value. for that i am using RegulerExpression. (?!^0*$)(?!^0*\.+0)*$^\d{1,5}(\.+\d{1,2})?$ but this is not working it's giving error. Message "Invalid escape sequence" those are . and \ help me its arrgent. Thanks asif

    C# help tutorial question
  • Login

  • Don't have an account? Register

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