Click here to Skip to main content
16,020,706 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Crystal Report Direct Print Pin
shrikant.kudlur10-Apr-11 20:18
shrikant.kudlur10-Apr-11 20:18 
AnswerRe: Crystal Report Direct Print Pin
thatraja11-Apr-11 5:17
professionalthatraja11-Apr-11 5:17 
GeneralRe: Crystal Report Direct Print Pin
shrikant.kudlur18-Apr-11 18:57
shrikant.kudlur18-Apr-11 18:57 
GeneralRe: Crystal Report Direct Print Pin
thatraja18-Apr-11 21:39
professionalthatraja18-Apr-11 21:39 
Questionauto complete feature Pin
chakran22-Jan-10 0:36
chakran22-Jan-10 0:36 
Questionlogin Pin
arkiboys22-Jan-10 0:30
arkiboys22-Jan-10 0:30 
AnswerRe: login Pin
Prosanta Kundu online22-Jan-10 0:41
Prosanta Kundu online22-Jan-10 0:41 
Questionhow to access textboxid dynamically Pin
vbmadhavi21-Jan-10 23:14
vbmadhavi21-Jan-10 23:14 
hello ,

i create text boxes dynamically.i can't get text box value in another button.iam sending my code


this is iam developing

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If textbox1.Text <> "" Then
CreateControl()
End If
End Sub
Private Sub CreateControl()
Dim i As Integer = 0
For i = 1 To 10
Dim txt As TextBox = New TextBox
' txt.ID = "txt" & i
txt.ID = "txt_" & i
txt.text="hello"
Session("text") = txt.ID
Panel1.Controls.Add(txt)
Next
End Sub

Protected Sub button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click
Dim i As Integer
For i = 1 To 10
Dim txtCtrl As TextBox = DirectCast(Panel1.FindControl("txt_" & i), TextBox)
If txtCtrl.Text <> Nothing Then
MsgBox(txtCtrl.Text)
End If

Next
End Sub

here i can get text box values one by one.but i dont wont that.

here 10 text boxes are there,in which,i want one textbox value which is selected in number of text boxes.

urgently i want solution plz send reply to me
AnswerRe: how to access textboxid dynamically Pin
Prosanta Kundu online22-Jan-10 0:37
Prosanta Kundu online22-Jan-10 0:37 
Questionweb service error Pin
iamdking21-Jan-10 22:02
iamdking21-Jan-10 22:02 
AnswerRe: web service error Pin
SeMartens21-Jan-10 22:21
SeMartens21-Jan-10 22:21 
GeneralRe: web service error Pin
iamdking21-Jan-10 22:30
iamdking21-Jan-10 22:30 
QuestionHide and Show Buttons on the Clients Side Pin
Vimalsoft(Pty) Ltd21-Jan-10 21:45
professionalVimalsoft(Pty) Ltd21-Jan-10 21:45 
AnswerRe: Hide and Show Buttons on the Clients Side Pin
Dinesh Mani21-Jan-10 22:05
Dinesh Mani21-Jan-10 22:05 
AnswerRe: Hide and Show Buttons on the Clients Side Pin
Anurag Gandhi21-Jan-10 22:17
professionalAnurag Gandhi21-Jan-10 22:17 
GeneralRe: Hide and Show Buttons on the Clients Side Pin
Vimalsoft(Pty) Ltd21-Jan-10 22:23
professionalVimalsoft(Pty) Ltd21-Jan-10 22:23 
GeneralMessage Removed Pin
22-Jan-10 1:42
professionalAmit Spadez22-Jan-10 1:42 
GeneralRe: Hide and Show Buttons on the Clients Side Pin
Vimalsoft(Pty) Ltd22-Jan-10 1:46
professionalVimalsoft(Pty) Ltd22-Jan-10 1:46 
QuestionText-Align="Right" in theme Pin
.NET- India 21-Jan-10 21:08
.NET- India 21-Jan-10 21:08 
AnswerRe: Text-Align="Right" in theme Pin
Anurag Gandhi21-Jan-10 22:22
professionalAnurag Gandhi21-Jan-10 22:22 
AnswerRe: Text-Align="Right" in theme Pin
Prosanta Kundu online22-Jan-10 0:27
Prosanta Kundu online22-Jan-10 0:27 
Questionhow to access hiddenfield in usercontrol which is there in master page. Pin
bhavna432121-Jan-10 20:39
bhavna432121-Jan-10 20:39 
AnswerRe: how to access hiddenfield in usercontrol which is there in master page. Pin
Vimalsoft(Pty) Ltd21-Jan-10 21:02
professionalVimalsoft(Pty) Ltd21-Jan-10 21:02 
AnswerRe: how to access hiddenfield in usercontrol which is there in master page. Pin
Brij21-Jan-10 21:04
mentorBrij21-Jan-10 21:04 
AnswerRe: how to access hiddenfield in usercontrol which is there in master page. Pin
Pranay Rana21-Jan-10 21:20
professionalPranay Rana21-Jan-10 21:20 

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.