Click here to Skip to main content
16,005,491 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: related to website Pin
Kapil Thakur15-Jun-09 21:27
Kapil Thakur15-Jun-09 21:27 
Questionnot getting value in session("lang") Pin
anbusenthil15-Jun-09 3:47
anbusenthil15-Jun-09 3:47 
AnswerRe: not getting value in session("lang") Pin
Abhijit Jana15-Jun-09 4:03
professionalAbhijit Jana15-Jun-09 4:03 
GeneralRe: not getting value in session("lang") Pin
anbusenthil15-Jun-09 7:41
anbusenthil15-Jun-09 7:41 
AnswerRe: not getting value in session("lang") Pin
Parwej Ahamad15-Jun-09 4:09
professionalParwej Ahamad15-Jun-09 4:09 
Questionsetting targetserverurl in SSRS? Pin
Pawan Kiran15-Jun-09 3:45
Pawan Kiran15-Jun-09 3:45 
Questionhow to move mails from Inbox to another folders through .net code??? Pin
nkmkrishna15-Jun-09 3:36
nkmkrishna15-Jun-09 3:36 
AnswerRe: how to move mails from Inbox to another folders through .net code??? Pin
nkmkrishna15-Jun-09 4:03
nkmkrishna15-Jun-09 4:03 
GeneralRe: how to move mails from Inbox to another folders through .net code??? Pin
Abhijit Jana15-Jun-09 4:13
professionalAbhijit Jana15-Jun-09 4:13 
AnswerRe: how to move mails from Inbox to another folders through .net code??? Pin
Christian Graus15-Jun-09 15:07
protectorChristian Graus15-Jun-09 15:07 
QuestionServer Error in '/PopForums.UI' Application. Pin
EmZan15-Jun-09 3:11
EmZan15-Jun-09 3:11 
AnswerRe: Server Error in '/PopForums.UI' Application. Pin
Abhijit Jana15-Jun-09 3:25
professionalAbhijit Jana15-Jun-09 3:25 
GeneralRe: Server Error in '/PopForums.UI' Application. Pin
EmZan15-Jun-09 3:27
EmZan15-Jun-09 3:27 
GeneralRe: Server Error in '/PopForums.UI' Application. Pin
Abhijit Jana15-Jun-09 3:44
professionalAbhijit Jana15-Jun-09 3:44 
GeneralRe: Server Error in '/PopForums.UI' Application. Pin
EmZan15-Jun-09 3:47
EmZan15-Jun-09 3:47 
GeneralRe: Server Error in '/PopForums.UI' Application. Pin
Abhijit Jana15-Jun-09 4:04
professionalAbhijit Jana15-Jun-09 4:04 
GeneralRe: Server Error in '/PopForums.UI' Application. Pin
EmZan15-Jun-09 5:11
EmZan15-Jun-09 5:11 
AnswerRe: Server Error in '/PopForums.UI' Application. [modified] Pin
saanj15-Jun-09 3:35
saanj15-Jun-09 3:35 
GeneralRe: Server Error in '/PopForums.UI' Application. Pin
EmZan15-Jun-09 5:12
EmZan15-Jun-09 5:12 
Questioncan't refresh master page's function when called from another page dynamically. Pin
pujafaldu15-Jun-09 3:05
pujafaldu15-Jun-09 3:05 
AnswerRe: can't refresh master page's function when called from another page dynamically. Pin
himanshu256115-Jun-09 19:45
himanshu256115-Jun-09 19:45 
GeneralRe: can't refresh master page's function when called from another page dynamically. Pin
pujafaldu15-Jun-09 19:54
pujafaldu15-Jun-09 19:54 
GeneralRe: can't refresh master page's function when called from another page dynamically. Pin
himanshu256115-Jun-09 20:05
himanshu256115-Jun-09 20:05 
GeneralRe: can't refresh master page's function when called from another page dynamically. Pin
pujafaldu15-Jun-09 20:30
pujafaldu15-Jun-09 20:30 
Questiongetting value of dynamic textbox after post back Pin
Saam_cse15-Jun-09 2:48
Saam_cse15-Jun-09 2:48 
I like to create textBox dynamically by pressing a button. But I can’t getting the textbox or its value back after a postback occur. I am creating New textBox lile bellow...

Partial Class postback
Inherits System.Web.UI.Page
Dim tx As New TextBox

................
................
Protected Sub btnNewAdd_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnNewAdd.Click
PlaceHolder1.Controls.Add(tx)
End Sub

..............
...............
Now I pressed a 'save' button and try to show dynamically created text box's value in label.But it is not happening. Also textBox vanishes. My code is bellow...

Protected Sub btnSave_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSave.Click
Label1.Text = tx.Text
End Sub
.......... Poke tongue | ;-P
End Class


Please help me to achive this.

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.