Click here to Skip to main content
15,887,746 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: activeX Control.. Pin
ptr2void27-Mar-08 20:35
ptr2void27-Mar-08 20:35 
QuestionThreadPool thread limit = potential deadlock? Pin
Mike Marynowski27-Mar-08 12:05
professionalMike Marynowski27-Mar-08 12:05 
AnswerRe: ThreadPool thread limit = potential deadlock? Pin
N a v a n e e t h27-Mar-08 16:37
N a v a n e e t h27-Mar-08 16:37 
AnswerRe: ThreadPool thread limit = potential deadlock? Pin
Guffa28-Mar-08 1:59
Guffa28-Mar-08 1:59 
GeneralRe: ThreadPool thread limit = potential deadlock? Pin
N a v a n e e t h28-Mar-08 3:03
N a v a n e e t h28-Mar-08 3:03 
GeneralAJAX UpdatePanel for Menu Control Pin
Ekjon27-Mar-08 10:54
Ekjon27-Mar-08 10:54 
GeneralRe: AJAX UpdatePanel for Menu Control Pin
Ekjon27-Mar-08 18:06
Ekjon27-Mar-08 18:06 
AnswerDoing a sync(normal) postback from and gridview inside an ajax updatepanel Pin
Bogdan Damian27-Mar-08 10:31
Bogdan Damian27-Mar-08 10:31 
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 Cry | :(( .
The solution is to use the ScriptManager RegisterPostBackControl function and register the links/buttons for which you need normal postback here.
<br />
        foreach (GridViewRow row in ClaimGridView.Rows)<br />
        {<br />
Control c = (Control)row.Cells[0].FindControl("myctrl");<br />
            ScriptManager.GetCurrent(this.Page).RegisterPostBackControl(c);<br />
        }<br />


PS: Confused | :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

QuestionManually consume webservice Pin
mpavas27-Mar-08 9:51
mpavas27-Mar-08 9:51 
GeneralRe: Manually consume webservice Pin
Christian Graus27-Mar-08 11:32
protectorChristian Graus27-Mar-08 11:32 
GeneralRe: Manually consume webservice Pin
mpavas28-Mar-08 5:03
mpavas28-Mar-08 5:03 
GeneralADAM Roleprovider class in ASP.NET 2.0 Pin
K.P.Kannan27-Mar-08 8:22
K.P.Kannan27-Mar-08 8:22 
GeneralRe: ADAM Roleprovider class in ASP.NET 2.0 Pin
RasmusLP30-Jun-08 5:16
RasmusLP30-Jun-08 5:16 
GeneralAjax Login Pin
Ed.Poore27-Mar-08 7:53
Ed.Poore27-Mar-08 7:53 
QuestionRequired Fields ? Pin
kindman_nb27-Mar-08 7:42
kindman_nb27-Mar-08 7:42 
AnswerRe: Required Fields ? Pin
Not Active27-Mar-08 8:42
mentorNot Active27-Mar-08 8:42 
GeneralCreateing xml file dynamically Pin
Sankar Komma 27-Mar-08 6:56
Sankar Komma 27-Mar-08 6:56 
GeneralRe: Createing xml file dynamically Pin
Not Active27-Mar-08 8:44
mentorNot Active27-Mar-08 8:44 
JokeRe: Createing xml file dynamically Pin
Jesse Squire27-Mar-08 8:51
Jesse Squire27-Mar-08 8:51 
GeneralRe: Createing xml file dynamically Pin
Soumini Ramakrishnan28-Mar-08 1:36
Soumini Ramakrishnan28-Mar-08 1:36 
GeneralRe: Createing xml file dynamically Pin
Not Active28-Mar-08 1:38
mentorNot Active28-Mar-08 1:38 
GeneralASP.NET C# pdf and/or doc viewer component Pin
maivit27-Mar-08 5:37
maivit27-Mar-08 5:37 
GeneralRe: ASP.NET C# pdf and/or doc viewer component Pin
Paul Conrad27-Mar-08 6:31
professionalPaul Conrad27-Mar-08 6:31 
GeneralData Binding Without DataSource Components Pin
Brady Kelly27-Mar-08 5:13
Brady Kelly27-Mar-08 5:13 
GeneralRe: Data Binding Without DataSource Components Pin
Jesse Squire27-Mar-08 8:56
Jesse Squire27-Mar-08 8:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.