I you are using forms you should check also if you didn't do it yet.
Bogdan Developer e-Projects ro
I you are using forms you should check also if you didn't do it yet.
Bogdan Developer e-Projects ro
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
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
I use it only this notation for private vars from classes :)
damianbc Developer
public string Substring( int startIndex, int length ); damianbc
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
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
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