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

ASP.NET

 
GeneralRe: I want to open a "word.doc" file with asp.net. Please help me!!! Pin
Mike Ellison29-Apr-06 3:34
Mike Ellison29-Apr-06 3:34 
GeneralRe: I want to open a "word.doc" file with asp.net. Please help me!!! Pin
minhpc_bk29-Apr-06 23:03
minhpc_bk29-Apr-06 23:03 
GeneralRe: I want to open a "word.doc" file with asp.net. Please help me!!! Pin
Mike Ellison1-May-06 6:27
Mike Ellison1-May-06 6:27 
AnswerRe: I want to open a "word.doc" file with asp.net. Please help me!!! Pin
V.28-Apr-06 3:32
professionalV.28-Apr-06 3:32 
Questiondropdown list Pin
sudharsong27-Apr-06 23:50
sudharsong27-Apr-06 23:50 
AnswerRe: dropdown list Pin
sudharsong28-Apr-06 1:16
sudharsong28-Apr-06 1:16 
GeneralRe: dropdown list Pin
CWIZO28-Apr-06 2:52
CWIZO28-Apr-06 2:52 
GeneralRe: dropdown list Pin
CWIZO28-Apr-06 2:54
CWIZO28-Apr-06 2:54 
put a onchange attribut into your select box :


...


and then write a JS function:

function copyEmail ()
{
  var selectElement = document.getElementById ( 'yourSelect' );
  var textElement = document.getElementById ( 'yourTextBoxID' );

  textElement.value = selectElement.options[selectElement.selectedIndex].value;
}


--------------------------------------------------------
My portfolio & development blog
Q:What does the derived class in C# tell to it's parent?
A:All your base are belong to us!
GeneralRe: dropdown list Pin
sudharsong30-Apr-06 19:23
sudharsong30-Apr-06 19:23 
GeneralRe: dropdown list Pin
CWIZO30-Apr-06 23:52
CWIZO30-Apr-06 23:52 
Questionasp.net 2.0 email Pin
fmardani27-Apr-06 23:22
fmardani27-Apr-06 23:22 
AnswerRe: asp.net 2.0 email Pin
minhpc_bk27-Apr-06 23:51
minhpc_bk27-Apr-06 23:51 
QuestionPassing Page Object into Class Pin
cullyk27-Apr-06 22:55
cullyk27-Apr-06 22:55 
AnswerRe: Passing Page Object into Class Pin
Paddy Boyd27-Apr-06 23:21
Paddy Boyd27-Apr-06 23:21 
GeneralRe: Passing Page Object into Class Pin
cullyk27-Apr-06 23:41
cullyk27-Apr-06 23:41 
GeneralRe: Passing Page Object into Class Pin
Paddy Boyd27-Apr-06 23:42
Paddy Boyd27-Apr-06 23:42 
GeneralRe: Passing Page Object into Class Pin
cullyk27-Apr-06 23:45
cullyk27-Apr-06 23:45 
GeneralRe: Passing Page Object into Class Pin
Paddy Boyd27-Apr-06 23:48
Paddy Boyd27-Apr-06 23:48 
GeneralRe: Passing Page Object into Class Pin
cullyk28-Apr-06 0:19
cullyk28-Apr-06 0:19 
Questiontextbox in grid Pin
david boon27-Apr-06 22:38
david boon27-Apr-06 22:38 
AnswerRe: textbox in grid Pin
Paddy Boyd27-Apr-06 22:48
Paddy Boyd27-Apr-06 22:48 
GeneralRe: textbox in grid Pin
david boon27-Apr-06 23:39
david boon27-Apr-06 23:39 
AnswerRe: textbox in grid Pin
Paddy Boyd27-Apr-06 23:41
Paddy Boyd27-Apr-06 23:41 
GeneralRe: textbox in grid Pin
david boon27-Apr-06 23:54
david boon27-Apr-06 23:54 
Questionasp.net 2.0 login Pin
fmardani27-Apr-06 21:29
fmardani27-Apr-06 21:29 

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.