Click here to Skip to main content
15,899,825 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: how to compare two word files Pin
Sandeep Mewara17-May-10 20:31
mveSandeep Mewara17-May-10 20:31 
QuestionDataList HeaderTemplate Problem Pin
jitendrafaye17-May-10 18:02
jitendrafaye17-May-10 18:02 
QuestionHttp Post Pin
Dot-Net-Dev17-May-10 17:51
Dot-Net-Dev17-May-10 17:51 
AnswerRe: Http Post Pin
Not Active17-May-10 18:06
mentorNot Active17-May-10 18:06 
Questionusercontrol event Pin
Dhyanga17-May-10 7:06
Dhyanga17-May-10 7:06 
AnswerRe: usercontrol event Pin
Not Active17-May-10 7:12
mentorNot Active17-May-10 7:12 
GeneralRe: usercontrol event Pin
Dhyanga17-May-10 7:16
Dhyanga17-May-10 7:16 
AnswerRe: usercontrol event Pin
Rutvik Dave17-May-10 7:29
professionalRutvik Dave17-May-10 7:29 
in your user control add a property like... (I assume that your user control has text box called txt1)


private string displayText
public string DisplayText
{
    get { return _displayText; }
    set { txt1.Text = _displayText = value; }
}



now suppose your user control has name U1, then just add U1.DisplayText = "something" along with txt2.Text = "something" in your aspx page. and you are all set. Smile | :)
GeneralRe: usercontrol event Pin
Dhyanga17-May-10 7:36
Dhyanga17-May-10 7:36 
GeneralRe: usercontrol event Pin
Dhyanga17-May-10 7:37
Dhyanga17-May-10 7:37 
GeneralRe: usercontrol event Pin
Rutvik Dave17-May-10 7:41
professionalRutvik Dave17-May-10 7:41 
GeneralRe: usercontrol event Pin
Dhyanga17-May-10 7:45
Dhyanga17-May-10 7:45 
GeneralRe: usercontrol event Pin
Rutvik Dave17-May-10 8:00
professionalRutvik Dave17-May-10 8:00 
GeneralRe: usercontrol event [modified] Pin
Dhyanga17-May-10 8:03
Dhyanga17-May-10 8:03 
GeneralRe: usercontrol event Pin
michaelschmitt17-May-10 8:40
michaelschmitt17-May-10 8:40 
GeneralRe: usercontrol event Pin
Dhyanga17-May-10 9:11
Dhyanga17-May-10 9:11 
GeneralRe: usercontrol event Pin
Not Active17-May-10 9:52
mentorNot Active17-May-10 9:52 
GeneralRe: usercontrol event Pin
Dhyanga17-May-10 9:55
Dhyanga17-May-10 9:55 
GeneralRe: usercontrol event Pin
PunkIsNotDead17-May-10 13:55
PunkIsNotDead17-May-10 13:55 
GeneralRe: usercontrol event Pin
Not Active17-May-10 18:00
mentorNot Active17-May-10 18:00 
GeneralRe: usercontrol event Pin
PunkIsNotDead18-May-10 11:05
PunkIsNotDead18-May-10 11:05 
GeneralRe: usercontrol event Pin
Dhyanga18-May-10 2:31
Dhyanga18-May-10 2:31 
GeneralRe: usercontrol event Pin
Dhyanga18-May-10 2:43
Dhyanga18-May-10 2:43 
GeneralRe: usercontrol event Pin
PunkIsNotDead18-May-10 17:34
PunkIsNotDead18-May-10 17:34 
GeneralRe: usercontrol event Pin
Dhyanga19-May-10 3:23
Dhyanga19-May-10 3:23 

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.