imiscor
05-26-2004, 08:31 PM
Hi I'm using net.data and a database to bring information from a database onto websites. My problem is that I am making a site which links off to different pieces of data. Example: A new submission has values for title, news ID # , news story, etc. The way it works is upon clicking a link on the main page, a value(tempnewsid) is assigned the value of the news id# which then is used to generate a page. Its an effective method of doing this. But heres my problem. I can do it all in java.... the code looks something like this...
<form method="post" action = "http://xxxxxx/Call_newsclicked">
<input type="submit" value="$(V2)">
<input type="hidden" name="user_type" value="$(user_type)">
<input type="hidden" name="employeeid" value="$(employeeid)">
<input type="hidden" name="tempjobid" value="$(V1)">
<input type="hidden" name="newsTitle" value="$(V2)">
This works well because with a form button I can do a lot. The problem is the form button is grey and ugly. I want it to be white. I also tried doing <a href with onclick, but I dont know how to assign tempjobid a value with onclick. This may be confusing, but I really need help with this :/ ty
<form method="post" action = "http://xxxxxx/Call_newsclicked">
<input type="submit" value="$(V2)">
<input type="hidden" name="user_type" value="$(user_type)">
<input type="hidden" name="employeeid" value="$(employeeid)">
<input type="hidden" name="tempjobid" value="$(V1)">
<input type="hidden" name="newsTitle" value="$(V2)">
This works well because with a form button I can do a lot. The problem is the form button is grey and ugly. I want it to be white. I also tried doing <a href with onclick, but I dont know how to assign tempjobid a value with onclick. This may be confusing, but I really need help with this :/ ty