dropdownlist controling appearance of signature in textbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a webform which has a dropdownlist with names. I also have jpg in my
project which has the person's signature. I want the persons signature to
appear at the bottom of the page when the name is selected from the
dropdownlist. I have searched to find how a hyperlink could be used within
vb and have very little success. Anyone have ideas?
 
Here is one way:

1.> Populate the DDL with the names and use the Value as the file name of
the JPG
2.> When user selects from DDL, have the form refresh (set AutoPostBack =
True)
3.> On load of form, display JPG from selected DDL
 
Back
Top