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

cramteke

@cramteke
About
Posts
5
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • disable or remove minimize and maximize buttons in a startupwindow
    C cramteke

    http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/ModalPopup/ModalPopup.aspx[^] may be this is what you want

    ASP.NET

  • button in Repeater item
    C cramteke

    since you are dynamically adding control so the controls are not saved. try adding the controls when the page post back aging and it should work then

    ASP.NET com help announcement

  • How to refresh the ASP.Net page after asynchronously updating the contents of page
    C cramteke

    keep some hidden button in the page and call button1.click() or __dopostback("","") or this.form[0].submit()

    ASP.NET csharp css asp-net wpf wcf

  • disable or remove minimize and maximize buttons in a startupwindow
    C cramteke

    try window.open function

    ASP.NET

  • How to ignore -ve value while sorting generic list in c#.
    C cramteke

    you can do some thing like this

    public partial class _Default : System.Web.UI.Page
    {
    protected void Page_Load(object sender, EventArgs e)
    {
    List<decimal> lstIntCol = new List<decimal>();
    lstIntCol.Add(0.3M);
    lstIntCol.Add(0.2M);
    lstIntCol.Add(-0.3M);
    lstIntCol.Sort(new decimalComparer());
    foreach (decimal d in lstIntCol)
    {
    Response.Write(d.ToString() + "--");
    }
    }
    }

    public class decimalComparer : System.Collections.Generic.IComparer<decimal>
    {

    #region IComparer<decimal> Members
    
    public int Compare(decimal x, decimal y)
    {
        return decimal.Compare(Math.Abs(y),Math.Abs(x));
    }
    
    #endregion
    

    }

    ASP.NET csharp algorithms data-structures tutorial
  • Login

  • Don't have an account? Register

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