TStewartFan
Junior Member
190 Posts |
Posted - 29 March 2005 : 23:28:28
|
I am a bit stumpped (mainly due to my lack of knowledge with sql) on how to do the following: I have three hidden fields with unknown values I am hoping to add to the inc_profile.asp page. From what I can see the normal process for the profile page is as follows: <option selected value=""" & rs("M_COUNTRY") & """>" & ChkString(rs("M_COUNTRY"), "display") & "</option> However I cannot take this approach because I don't know the actual value until the submit button is clicked. Here are the three hidden buttons I am hoping to update my database with:
"<input type=""hidden"" name=""hmGroup"" value="""" />" & _ "<input type=""hidden"" name=""hmArtist"" value="""" />" & _ "<input type=""hidden"" name=""hmSong"" value="""" />" & _
Database Fields In the Members Table: M_MUSIC_GROUP M_MUSIC_ARTIST M_MUSIC_URL |
|