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
J

junglerover77

@junglerover77
About
Posts
9
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • insert a image button in asp.net grid
    J junglerover77

    Sorry, I don't know what "infragistics grid" is. No, to bind a dataset to a datagrid will never overwrite the existing columns of the datagrid. If you set the property "AutoGenerateColumns" to false, no columns will be created when you execute "DataBind()". ---------------------------------- Was it a cat I saw?

    ASP.NET csharp css asp-net tutorial question

  • insert a image button in asp.net grid
    J junglerover77

    just add a template column, and create an imagebutton in ItemTemplate. then, use ItemDataBound Event: protected void datagrid_ItemDataBound(object sender, DataGridItemEventArgs e) { if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType==ListItemType.AlternatingItem) { ImageButton imgBtn = (ImageButton)e.Item.FindControl("ImageButton1"); //do whatever you want } } Was it a cat I saw?

    ASP.NET csharp css asp-net tutorial question

  • I need some help with DBNull and checkboxes
    J junglerover77

    To Check if a field's value is null: dataset.tables[0].row[0]["Field_Name"] == DBNull.Value Was it a cat I saw?

    C# database com help question

  • Common tasks in base classes, how?
    J junglerover77

    base class: protected int commonID; // this is common to all object public BaseClass{ } public void DoOtherThing { console.write commonID; // or something that accesses id } /////////////////////////////////////////////// sub-class: public myClass(int id) { commonID = id; DoOtherThing(); } Was it a cat I saw?

    C# question

  • How to avoid last event from execution when page is refreshed
    J junglerover77

    I think that's a standard behavior of Internet Explorer so that should be impossible to achieve your goal. But you can put a hyperlink to itself in each page and click it instead of click "Refresh". Was it a cat I saw?

    C# tutorial

  • pass more than one parameters to my stored procedure at a time
    J junglerover77

    commandobj.Parameters.AddRange(new SqlParameter[] { new SqlParameter("aaa", "bbb"), new SqlParameter("ccc", "ddd") }); Was it a cat I saw?

    C# database question

  • how to start a programe when the system is logged in.
    J junglerover77

    using Microsoft.Win32; Registry.SetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run","MyApp", Application.ExecutablePath); Was it a cat I saw?

    C# csharp tutorial

  • DataKeyField,God bless it...
    J junglerover77

    I'm using DataGrid 2.0, and I'm pretty sure that "DataKeyField" property still exists in DataGrid 2.0 . Was it a cat I saw?

    Database question csharp

  • Random in C#
    J junglerover77

    just use an INVISIBLE TextBox control to store the track and count of the clicks.:zzz:

    C# question csharp database help lounge
  • Login

  • Don't have an account? Register

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