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

ASP.NET

 
AnswerRe: iis problems Pin
Imran Khan Pathan18-Sep-07 19:43
Imran Khan Pathan18-Sep-07 19:43 
GeneralRe: iis problems Pin
Imran Khan Pathan18-Sep-07 19:57
Imran Khan Pathan18-Sep-07 19:57 
GeneralRe: iis problems Pin
Imran Khan Pathan18-Sep-07 20:21
Imran Khan Pathan18-Sep-07 20:21 
AnswerRe: iis problems Pin
Parwej Ahamad18-Sep-07 20:14
professionalParwej Ahamad18-Sep-07 20:14 
AnswerRe: iis problems Pin
rahul.net1119-Sep-07 5:02
rahul.net1119-Sep-07 5:02 
Questionhow to access the TextBox control of User Control Pin
Elena200618-Sep-07 18:45
Elena200618-Sep-07 18:45 
AnswerRe: how to access the TextBox control of User Control Pin
Christian Graus18-Sep-07 19:26
protectorChristian Graus18-Sep-07 19:26 
AnswerRe: how to access the TextBox control of User Control Pin
chiragfriend20056218-Sep-07 19:48
chiragfriend20056218-Sep-07 19:48 
hi, i am sending you the one example of how to access the Textbox of Usercontrol .
step(1) made .ascx(user contol) with the textbox like below



Public Property Address As String
Get
Return TxtAddress.Value
End Get
Set
TxtAddress.Value = Value
End Set
End Property

Public Property City As String
Get
Return TxtCity.Value
End Get
Set
TxtCity.Value = Value
End Set
End Property

Public Property StateName As String
Get
Return TxtState.Value
End Get
Set
TxtState.Value = Value
End Set
End Property


End Property



Address:

City:

State:


(2)Go to projectexplorer and add new file .aspx and drag and drop the usercontrol and in code part give the id(proper) name so we can access it.
for example .

<usercontrol id="ShipAddr">

(3)drage and drop the button & below the Usercontol.and cliik event write the below code.
Resopnce.write(ShipAddr.Address & ", " & ShipAddr.City & ", "& ShipAddr.StateName & ", " _
& ShipAddr.Zip & "
")


that's site!!
Hope this will help you!!!!!





(3) add one button below the Usercontrol.







chirag

QuestionHow to access method declared in Master page Pin
Elena200618-Sep-07 18:42
Elena200618-Sep-07 18:42 
AnswerRe: How to access method declared in Master page Pin
Christian Graus18-Sep-07 19:25
protectorChristian Graus18-Sep-07 19:25 
Questionretrieve ?id, error on parameter on mysql connector Pin
Louie Miranda18-Sep-07 18:10
Louie Miranda18-Sep-07 18:10 
AnswerRe: retrieve ?id, error on parameter on mysql connector Pin
Christian Graus18-Sep-07 18:25
protectorChristian Graus18-Sep-07 18:25 
AnswerRe: retrieve ?id, error on parameter on mysql connector Pin
VenkataRamana.Gali18-Sep-07 18:27
VenkataRamana.Gali18-Sep-07 18:27 
GeneralRe: retrieve ?id, error on parameter on mysql connector Pin
Louie Miranda18-Sep-07 18:40
Louie Miranda18-Sep-07 18:40 
GeneralRe: retrieve ?id, error on parameter on mysql connector Pin
VenkataRamana.Gali18-Sep-07 19:06
VenkataRamana.Gali18-Sep-07 19:06 
GeneralRe: retrieve ?id, error on parameter on mysql connector Pin
Louie Miranda18-Sep-07 19:24
Louie Miranda18-Sep-07 19:24 
GeneralRe: retrieve ?id, error on parameter on mysql connector Pin
Christian Graus18-Sep-07 19:24
protectorChristian Graus18-Sep-07 19:24 
QuestionHelp me! About Select Folder Dialog&#65281; Pin
khkly18-Sep-07 16:42
khkly18-Sep-07 16:42 
AnswerRe: Help me! About Select Folder Dialog&#65281; Pin
Christian Graus18-Sep-07 17:43
protectorChristian Graus18-Sep-07 17:43 
QuestionVery slow GridView Pin
RanjithLogics18-Sep-07 16:14
RanjithLogics18-Sep-07 16:14 
AnswerRe: Very slow GridView Pin
VenkataRamana.Gali18-Sep-07 18:23
VenkataRamana.Gali18-Sep-07 18:23 
GeneralRe: Very slow GridView Pin
RanjithLogics18-Sep-07 18:27
RanjithLogics18-Sep-07 18:27 
GeneralRe: Very slow GridView Pin
VenkataRamana.Gali18-Sep-07 18:30
VenkataRamana.Gali18-Sep-07 18:30 
GeneralRe: Very slow GridView Pin
RanjithLogics18-Sep-07 18:42
RanjithLogics18-Sep-07 18:42 
QuestionGenerate CSV File from database Pin
C#Coudou18-Sep-07 15:10
C#Coudou18-Sep-07 15:10 

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.