Click here to Skip to main content
16,008,490 members
Home / Discussions / Web Development
   

Web Development

 
QuestionGetting a list of all child requests generated by a URL Pin
AmitDey18-Apr-10 6:34
AmitDey18-Apr-10 6:34 
AnswerRe: Getting a list of all child requests generated by a URL Pin
daveyerwin18-Apr-10 7:05
daveyerwin18-Apr-10 7:05 
QuestionWhen write in textbox, words are displayed in the same page Pin
Abdul-Rhman Alsri18-Apr-10 1:05
Abdul-Rhman Alsri18-Apr-10 1:05 
AnswerRe: When write in textbox is shown next to it Pin
Dalek Dave18-Apr-10 3:15
professionalDalek Dave18-Apr-10 3:15 
GeneralRe: When write in textbox is shown next to it Pin
Abdul-Rhman Alsri18-Apr-10 4:06
Abdul-Rhman Alsri18-Apr-10 4:06 
GeneralRe: When write in textbox is shown next to it Pin
User 171649218-Apr-10 4:21
professionalUser 171649218-Apr-10 4:21 
AnswerRe: When write in textbox, words are displayed in the same page Pin
daveyerwin18-Apr-10 5:27
daveyerwin18-Apr-10 5:27 
AnswerRe: When write in textbox, words are displayed in the same page Pin
burntblark18-Apr-10 23:14
burntblark18-Apr-10 23:14 
You would have to monitor the text boxes' onKeyUp event. For every invoke of the event you would copy the content of the respective text box and represent in the respective area.
Example:
/**
* variable x is the id of the text box you want copied 
* and y is the id of the tag you want the text box's value to be copied to
**/

function copy(x,y)
{
    var text=document.getElementById(x).value;
    document.getElementById(y).innerText = text;
}

The above should be placed in a script tag preferably within your head tag. Then add the following code to the respective textboxes:
<input type="text" name="txt1" id="txt1" value="" onKeyUp="copy(this.id, 'destination_id');" />

QuestionThe desired font is not viewing on the webpage. Pin
Razanust17-Apr-10 15:43
Razanust17-Apr-10 15:43 
AnswerRe: The desired font is not viewing on the webpage. Pin
Dalek Dave18-Apr-10 3:16
professionalDalek Dave18-Apr-10 3:16 
AnswerRe: The desired font is not viewing on the webpage. Pin
burntblark18-Apr-10 23:28
burntblark18-Apr-10 23:28 
GeneralRe: The desired font is not viewing on the webpage. Pin
Razanust19-Apr-10 3:38
Razanust19-Apr-10 3:38 
GeneralRe: The desired font is not viewing on the webpage. Pin
burntblark19-Apr-10 3:58
burntblark19-Apr-10 3:58 
GeneralRe: The desired font is not viewing on the webpage. Pin
stebich19-Apr-10 4:10
professionalstebich19-Apr-10 4:10 
AnswerRe: The desired font is not viewing on the webpage. Pin
Jayapal Chandran5-May-10 21:51
Jayapal Chandran5-May-10 21:51 
QuestionHow to Pass Parameter from DataList to AjaxControlToolkit:ModalPopupExtender Pin
Saba0216-Apr-10 20:09
Saba0216-Apr-10 20:09 
QuestionLoading cgi page information in html file. Pin
josephong15-Apr-10 22:37
josephong15-Apr-10 22:37 
AnswerRe: Loading cgi page information in html file. Pin
Martin Jarvis16-Apr-10 11:46
Martin Jarvis16-Apr-10 11:46 
GeneralDemolishing the house to change a window Pin
Peace ON15-Apr-10 22:02
Peace ON15-Apr-10 22:02 
GeneralRe: Demolishing the house to change a window Pin
Not Active16-Apr-10 2:02
mentorNot Active16-Apr-10 2:02 
QuestionQuick Question about spacing... Pin
Dalek Dave14-Apr-10 8:19
professionalDalek Dave14-Apr-10 8:19 
AnswerRe: Quick Question about spacing... Pin
Not Active14-Apr-10 8:36
mentorNot Active14-Apr-10 8:36 
GeneralRe: Quick Question about spacing... Pin
Dalek Dave14-Apr-10 8:41
professionalDalek Dave14-Apr-10 8:41 
AnswerRe: Quick Question about spacing... Pin
daveyerwin14-Apr-10 8:36
daveyerwin14-Apr-10 8:36 
GeneralRe: Quick Question about spacing... Pin
Dalek Dave14-Apr-10 8:40
professionalDalek Dave14-Apr-10 8:40 

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.