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
B

Bogdan Damian

@Bogdan Damian
About
Posts
8
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Session Expired Problem
    B Bogdan Damian

    I you are using forms you should check also if you didn't do it yet.

    Bogdan Developer e-Projects ro

    ASP.NET help

  • block anonymous users from viewing a page for a few times
    B Bogdan Damian

    You could also do it by IP. The downside whould be that if some users are behind a proxy than you'll have a maximum 3 hits for all the users behind that proxy :).

    Bogdan Developer e-Projects ro

    ASP.NET question help

  • Doing a sync(normal) postback from and gridview inside an ajax updatepanel
    B Bogdan Damian

    In the last days I started to add some ajax functionality to an existing non ajax application using aps.net ajax. One of the tasks was to move an existing gridview into an update panel so that it can be refreshed without page loading. The problem that I’ve encountered was that I couldn’t do a normal (sync) postback from the grid view. So I lost a half a day searching for an answer :(( . The solution is to use the ScriptManager RegisterPostBackControl function and register the links/buttons for which you need normal postback here. foreach (GridViewRow row in ClaimGridView.Rows) { Control c = (Control)row.Cells[0].FindControl("myctrl"); ScriptManager.GetCurrent(this.Page).RegisterPostBackControl(c); } PS: :confused: I also tried using another UpdatePanel for my column and adding an asp:PostBackTrigger but it didn't not work.

    Bogdan Developer e-Projects ro

    ASP.NET csharp css asp-net algorithms help

  • What do you think?
    B Bogdan Damian

    I use it only this notation for private vars from classes :)

    damianbc Developer

    The Lounge question database sql-server com sysadmin

  • i incounter substring problem
    B Bogdan Damian

    public string Substring( int startIndex, int length ); damianbc

    C# help question

  • Data Bindings again
    B Bogdan Damian

    Hi First you shouldn't add two bindings to the same cotrol. Second for the combo you have the list datasource which is the datatable in your case and which uses DisplayMember and ValueMember and also you have the current record which you want to edit. You should try to use only one binding on "StatieID" and when the combo value is changed change the name. ALso you should check that the datasource set on the combo contains the two columns ("Statie_Nume", "StatieID") damianbc

    C# help

  • I loose the session on the client side
    B Bogdan Damian

    You don't have to .net framework allready has the functionality for this. You just have to set the CookieContainer property of the client service with CookieContainer instance and also you must take care to use the same container on every call if you want to use the same session. damianbc

    C# help

  • Session timeout problem
    B Bogdan Damian

    That's strange. I suggest to put a Breakpoint on Session_End method from Global.asax just to be sure that the session timeout is the problem. damianbc

    C# help 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