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
C

Colin Mc

@Colin Mc
About
Posts
4
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • long.Parse of datagrid cell value
    C Colin Mc

    i have a datagrid populated from an Oracle datbase and the last cell for each row is a number. i want to loop through each item and add up all the numbers i tried; long total = total + long.pasre(datagrid.items[loop].cells[6].Text) but i get the error "input string was not in correct format" can anybody help? the row in the oracle table is a number in case that helps? Thanks Colin :confused:

    ASP.NET help oracle question

  • finding the contents of a cell in a datagrid
    C Colin Mc

    Have you tried using a hyperlink column? Not sure if this will work for you but you could have column 1 with text 'View Details' and have this as a link to another page displaying the customer info. Something like this... private void DataGrid1_SelectedIndexChanged(object sender, System.EventArgs e){ //cast to dataGrid as that is what you are using DataGrid grid = (DataGrid)sender; //redirect to page you display customer info in passing customer number from column 1 (column 0 is your hyperlink column) string page = "newpage.aspx?id=" + grid.Items[grid.SelectedIndex].Cells[1].Text; Response.Redirect(page,true); } Just an idea! Colin

    C# sales

  • Web Service Responce size
    C Colin Mc

    I want to get the size of the responce from a web service and compare this with the size of a responce from a local function. Does anybody know how i might do this? Code samples appreciated Thanks in advance Colin McAdam (.NET wanabe)

    C# csharp question

  • Web Service responce size
    C Colin Mc

    I want to get the size of the responce from a web service and compare this with the size of a responce from a local function. Does anybody know how i might do this? Code samples appreciated Thanks in advance Colin McAdam (.NET wanabe)

    Web Development csharp 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