Click here to Skip to main content
15,915,324 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionMemoryStream Pin
Vijayaraj.Manoharan16-Aug-07 1:02
Vijayaraj.Manoharan16-Aug-07 1:02 
AnswerRe: MemoryStream Pin
Urs Enzler16-Aug-07 3:55
Urs Enzler16-Aug-07 3:55 
QuestionWhy the events for the Menu are not firing......? Pin
slimtech16-Aug-07 0:57
slimtech16-Aug-07 0:57 
GeneralRe: Why the events for the Menu are not firing......? Pin
slimtech16-Aug-07 21:12
slimtech16-Aug-07 21:12 
Questionhave a trouble with magement browser history in ajax asp Pin
hoangdung1983200416-Aug-07 0:43
hoangdung1983200416-Aug-07 0:43 
AnswerRe: have a trouble with magement browser history in ajax asp Pin
Christian Graus16-Aug-07 1:10
protectorChristian Graus16-Aug-07 1:10 
GeneralRe: have a trouble with magement browser history in ajax asp Pin
hoangdung1983200417-Aug-07 17:27
hoangdung1983200417-Aug-07 17:27 
Questiondynamically adding controls Pin
BINOVAR16-Aug-07 0:27
BINOVAR16-Aug-07 0:27 
Im adding textboxes in my asp.net page on button click inside a panel,which i have placed in my page.

but the new control is getting created ,Im losing the old dyanmically create textbox.here is my code.

Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click

i = Convert.ToInt16(Session(ID))

Dim textbox As New TextBox

textbox.ID = "textbox" & i

textbox.Text = textbox.ID
textbox.Style("top") = "800px"


Panel1.Controls.Add(textbox)
i = i + 1
Session(ID) = i
End Sub


Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

If Page.IsPostBack = False Then

Session(ID) = i
' MsgBox(Session(ID))
Else
' MsgBox("2")

End If


End Sub



dont know what is the mistake Im doing.Possibly its anything to do with Viewstate?

Thanks in advance



AnswerRe: dynamically adding controls Pin
Christian Graus16-Aug-07 0:31
protectorChristian Graus16-Aug-07 0:31 
Questionwhich type of cart variable I can use.. Pin
ajau16-Aug-07 0:22
ajau16-Aug-07 0:22 
AnswerRe: which type of cart variable I can use.. Pin
Christian Graus16-Aug-07 0:24
protectorChristian Graus16-Aug-07 0:24 
QuestionRequirement in file upload control Pin
Hari_101016-Aug-07 0:03
Hari_101016-Aug-07 0:03 
AnswerRe: Requirement in file upload control Pin
Vasudevan Deepak Kumar16-Aug-07 0:13
Vasudevan Deepak Kumar16-Aug-07 0:13 
AnswerRe: Requirement in file upload control Pin
Christian Graus16-Aug-07 0:16
protectorChristian Graus16-Aug-07 0:16 
GeneralRe: Requirement in file upload control Pin
Christian Graus16-Aug-07 0:32
protectorChristian Graus16-Aug-07 0:32 
Questionthread in asp.net [modified] Pin
Nidhiii16-Aug-07 0:01
Nidhiii16-Aug-07 0:01 
AnswerRe: thread in asp.net Pin
Christian Graus16-Aug-07 0:17
protectorChristian Graus16-Aug-07 0:17 
QuestionDynamically generate image control at run time Pin
Milind Panchal15-Aug-07 23:57
Milind Panchal15-Aug-07 23:57 
AnswerRe: Dynamically generate image control at run time Pin
Christian Graus16-Aug-07 0:21
protectorChristian Graus16-Aug-07 0:21 
GeneralRe: Dynamically generate image control at run time Pin
Milind Panchal16-Aug-07 0:31
Milind Panchal16-Aug-07 0:31 
GeneralRe: Dynamically generate image control at run time Pin
Christian Graus16-Aug-07 0:36
protectorChristian Graus16-Aug-07 0:36 
QuestionHow to change a template and Skin to ASP.NET page Pin
mangrovecm15-Aug-07 23:42
mangrovecm15-Aug-07 23:42 
AnswerRe: How to change a template and Skin on ASP.NET page programmably? Pin
mangrovecm22-Aug-07 18:27
mangrovecm22-Aug-07 18:27 
QuestionThread In ASP.NET Pin
S A R I T H15-Aug-07 23:39
S A R I T H15-Aug-07 23:39 
AnswerRe: Thread In ASP.NET Pin
Paddy Boyd15-Aug-07 23:53
Paddy Boyd15-Aug-07 23:53 

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.