Click here to Skip to main content
15,881,882 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Looking for decent html parser (.NET). Pin
leppie8-Jul-09 2:33
leppie8-Jul-09 2:33 
GeneralRe: Looking for decent html parser (.NET). Pin
Stuart Dootson8-Jul-09 2:33
professionalStuart Dootson8-Jul-09 2:33 
GeneralRe: Looking for decent html parser (.NET). Pin
wout de zeeuw8-Jul-09 9:21
wout de zeeuw8-Jul-09 9:21 
GeneralRe: Looking for decent html parser (.NET). Pin
Stuart Dootson8-Jul-09 9:51
professionalStuart Dootson8-Jul-09 9:51 
QuestionWindow from ASP Page [modified] Pin
ahmedmahiuddin7-Jul-09 0:30
ahmedmahiuddin7-Jul-09 0:30 
AnswerRe: Window from ASP Page Pin
Not Active7-Jul-09 2:28
mentorNot Active7-Jul-09 2:28 
Questionajax delay Pin
shabonaa6-Jul-09 12:37
shabonaa6-Jul-09 12:37 
AnswerRe: ajax delay Pin
Jeremy Likness9-Jul-09 7:33
professionalJeremy Likness9-Jul-09 7:33 
Use a serverside solution.

For example, with JQuery, something like this:

<asp:DropDown ID="MyDropDown" runat="server"/>
<asp:TextBox ID="MyTextBox" runat="server"/> 

<script type="text/javascript">

$(document).ready(function(){
   $('<%=MyDropDown.ClientID%>').change(function(){
      $('<%=MyTextBox.ClientID%>').val('<=MyDropDown.ClientID%').val());
   });
})

</script>


Basically, once the page is loaded, you are binding a function to the change event on the drop down. The change event sets the value of the textbox using the value of the drop down.

It's a little more involved without JQuery, you would use $get() to reference the controls and have to iterate the drop down to get the selected value.

Jeremy Likness
http://csharperimage.jeremylikness.com/

QuestionISAPI Extension nooB - .dll functions correctly if accessed directly but not through form POST ? Pin
Mike the Red6-Jul-09 1:06
Mike the Red6-Jul-09 1:06 
QuestionFont error .....! Pin
RongNK6-Jul-09 0:50
RongNK6-Jul-09 0:50 
AnswerRe: Font error .....! Pin
Vasudevan Deepak Kumar6-Jul-09 5:40
Vasudevan Deepak Kumar6-Jul-09 5:40 
Questionhow can i stream videos on my server Pin
ahmedhassan965-Jul-09 23:20
ahmedhassan965-Jul-09 23:20 
AnswerRe: how can i stream videos on my server Pin
Sabari MD13-Jul-09 18:22
Sabari MD13-Jul-09 18:22 
AnswerRe: how can i stream videos on my server Pin
dbkman1017-Jul-09 15:47
dbkman1017-Jul-09 15:47 
Questionproblem while uploading multiple files. Pin
techie815-Jul-09 2:16
techie815-Jul-09 2:16 
QuestionUnable to view generated thumbnail images. Pin
JimBob SquarePants4-Jul-09 3:51
JimBob SquarePants4-Jul-09 3:51 
AnswerRe: Cracking up! Pin
Not Active4-Jul-09 4:03
mentorNot Active4-Jul-09 4:03 
GeneralRe: Cracking up! Pin
JimBob SquarePants4-Jul-09 6:01
JimBob SquarePants4-Jul-09 6:01 
AnswerRe: Cracking up! Pin
molesworth4-Jul-09 4:59
molesworth4-Jul-09 4:59 
GeneralRe: Cracking up! Pin
JimBob SquarePants4-Jul-09 7:23
JimBob SquarePants4-Jul-09 7:23 
QuestionGame Developing Pin
ShahGopal3-Jul-09 19:14
ShahGopal3-Jul-09 19:14 
AnswerRe: Game Developing Pin
K03063-Jul-09 19:39
K03063-Jul-09 19:39 
Questionupload a website Pin
sheemap3-Jul-09 7:45
sheemap3-Jul-09 7:45 
AnswerRe: upload a website Pin
molesworth3-Jul-09 13:08
molesworth3-Jul-09 13:08 
GeneralRe: upload a website Pin
sheemap4-Jul-09 3:28
sheemap4-Jul-09 3:28 

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.