Click here to Skip to main content
15,906,569 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionhow could we know that a method is executing a certain point of time Pin
sainath43725-May-10 18:16
sainath43725-May-10 18:16 
Answer[Repost]: how could we know that a method is executing a certain point of time Pin
Sandeep Mewara25-May-10 18:32
mveSandeep Mewara25-May-10 18:32 
QuestionNeed way to access controls on page from a static method in codebehind. Pin
Adam Brown 325-May-10 10:29
Adam Brown 325-May-10 10:29 
AnswerRe: Need way to access controls on page from a static method in codebehind. Pin
Not Active25-May-10 17:28
mentorNot Active25-May-10 17:28 
QuestionUpdating contents of GridView from JavaScript Pin
Adam Brown 325-May-10 5:55
Adam Brown 325-May-10 5:55 
AnswerRe: Updating contents of GridView from JavaScript Pin
Viral Upadhyay25-May-10 18:27
Viral Upadhyay25-May-10 18:27 
AnswerRe: Updating contents of GridView from JavaScript Pin
Sandeep Mewara25-May-10 19:11
mveSandeep Mewara25-May-10 19:11 
QuestionExtender controls may not be registered after PreRender Pin
Hendrik Debedts25-May-10 3:00
Hendrik Debedts25-May-10 3:00 
I'm currently developing a compositecontrol, there was something I didn't understand, so I decided to create a little control to reproduce the problem to find out why this problem occurs. When running the following code I get the error above.

<ParseChildren(False, Nothing), PersistChildren(True)> _
Public Class CompositeTest
Inherits CompositeControl

Dim pnl As Panel
Dim txt As TextBox
Dim dde As AjaxControlToolkit.DropDownExtender

Protected Overrides Sub OnInit(ByVal e As System.EventArgs)
MyBase.OnInit(e)
pnl = New Panel
txt = New TextBox
dde = New AjaxControlToolkit.DropDownExtender
End Sub

Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
pnl.ID = "pnl"

txt.ID = "txt"

dde.ID = "dde"
dde.TargetControlID = "txt"

pnl.Controls.Add(txt)
pnl.Controls.Add(dde)

Controls.Add(pnl)

'MyBase.Render(writer)
End Sub
End Class

The question is why does this happen? And where in a control's lifecycle will a (extender-) control be registered?
AnswerRe: Extender controls may not be registered after PreRender Pin
Hendrik Debedts25-May-10 3:21
Hendrik Debedts25-May-10 3:21 
Questionhow to print a file without opening it Pin
raghvendrapanda25-May-10 2:44
raghvendrapanda25-May-10 2:44 
AnswerRe: how to print a file without opening it Pin
T M Gray25-May-10 7:45
T M Gray25-May-10 7:45 
AnswerRe: how to print a file without opening it Pin
Pranay Rana26-May-10 0:03
professionalPranay Rana26-May-10 0:03 
GeneralRe: how to print a file without opening it Pin
raghvendrapanda1-Jun-10 9:44
raghvendrapanda1-Jun-10 9:44 
QuestionSystem.IO.IOException Please help me Pin
cheguri25-May-10 0:45
cheguri25-May-10 0:45 
AnswerRe: System.IO.IOException Please help me Pin
P. S. Pundeer25-May-10 1:23
P. S. Pundeer25-May-10 1:23 
AnswerRe: System.IO.IOException Please help me Pin
Sandeep Mewara25-May-10 1:23
mveSandeep Mewara25-May-10 1:23 
Questionurl rewriting and updatepanel issues Pin
aamirzada25-May-10 0:37
aamirzada25-May-10 0:37 
AnswerRe: url rewriting and updatepanel issues Pin
Sandeep Mewara25-May-10 19:13
mveSandeep Mewara25-May-10 19:13 
Questionopening GridView in contentplaceholder of masterpage Pin
mominafiz25-May-10 0:33
mominafiz25-May-10 0:33 
Questionopening GridView in contentplaceholder of masterpage Pin
mominafiz25-May-10 0:56
mominafiz25-May-10 0:56 
AnswerRe: opening GridView in contentplaceholder of masterpage Pin
Sandeep Mewara25-May-10 1:17
mveSandeep Mewara25-May-10 1:17 
AnswerRe: opening GridView in contentplaceholder of masterpage Pin
Sandeep Mewara25-May-10 1:20
mveSandeep Mewara25-May-10 1:20 
GeneralRe: opening GridView in contentplaceholder of masterpage Pin
mominafiz25-May-10 1:50
mominafiz25-May-10 1:50 
GeneralRe: opening GridView in contentplaceholder of masterpage Pin
Sandeep Mewara25-May-10 19:16
mveSandeep Mewara25-May-10 19:16 
Questionproblem in clearing the sessions Pin
Amit Spadez24-May-10 23:48
professionalAmit Spadez24-May-10 23:48 

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.