Current location: Hot Scripts Forums » Programming Languages » ASP » passing values from one form to another -urgent


passing values from one form to another -urgent

Reply
  #1 (permalink)  
Old 09-18-03, 12:30 PM
aspuser25 aspuser25 is offline
Newbie Coder
 
Join Date: Aug 2003
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
passing values from one form to another -urgent

hi ...

i have an asp page which has 3 buttons.
<p align="center"><input class="button" type="button" onClick="location='welStudent.asp';" value="Click to write a new story"></p>
<p align="center"><input class="button" type="button" onClick="location='draftedStory.asp';" value="Click to complete the drafted story"></p>
<p align="center"> <input class="button" type="submit" value="Click to view your grade sheet" name="submit"> </p>

when i have written <form method="post" action="viewEditedStory.asp" name="teacher"> then the values of the radio button declared in form goes only in asp "viewEditedStory.asp". I want to use the radio button value also on clicking 2nd button described above (i.e. in 'draftedStory.asp') how can i do this?

here is my code:

<%
DIM RSA
DIM RSA2
DIM QUERY
DIM RSA3
DIM RSA4
DIM RSA5
DIM QUERY5
dim icount
DIM icount2
DIM flgNewStudent
Dim flgStudStoryCorrected

icount=0
flgNewStudent="FALSE"
flgStudStoryCorrected = "FALSE"

set RSA4 = Server.CreateObject("ADODB.Recordset")
RSA4.OPEN "Select story_id,status_student,story_status_date from student_content where student_id="&session("loggedID")&"", "dsn=school"

'if a student logs in for the first time
if RSA4.EOF then
FLAGNEW="TRUE"
response.write "<font color=#800080 size=6>" & session("logged_name") & " you are coming for the first time and hence you have no stories written till now"
%>
<html>
<head> <link rel="stylesheet" href="style.css" type="text/css" /> </head>
<body BGCOLOR="pink">
<p align=center><input class="button" type="button" onClick="location='welStudent.asp'"; value="Click to write a new story" style="width:230"> </p>
<%
response.end
end if
%>


<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body BGCOLOR="pink">
<center><font color="#800080" size="6"><b>"<%=session("logged_name")%>" you have written following stories </b></font></center>
<p><center></p>
<form method="post" action="viewEditedStory.asp" name="teacher">
<table border>
<thead valign="top" >
<tr>
<th>Student ID</th>
<th>Student Name</th>
<th>Story ID</th>
<th>Story Name</th>
<th>Student Story Status</th>
<th>Story Submitted Date</th>
<th>Teacher Story Status</th>
<th>Teacher Story Comment</th>
<th>Teacher Story Grade</th>
<th>Story Corrected Date</th>
</tr>
</thead>

<%
'if the student has written at least one story
do while not RSA4.EOF

FLAGNEW="FALSE"
response.write "student has at least written a story"
session("story_id") = RSA4.Fields ("story_id")

'retrieving story name
set RSA5 = Server.createObject("Adodb.recordset")
QUERY5="Select story_name from story_table where story_id="&session("story_id")&""
RSA5.OPEN QUERY5, "DSN=SCHOOL"

'retreiving whether teacher has corrected any of the stories written by student
set RSA = Server.CreateObject("ADODB.Recordset")
QUERY = "SELECT status_teacher,story_edited_date,story_comment,sto ry_grade FROM teacher_content where student_id ="&session("loggedID")&" and story_id= "&session("story_id")&""
RSA.OPEN QUERY, "DSN=school"

if RSA.EOF then
'do nothing but set a variable
flgStudStoryCorrected = "no"
response.write "there are no matching record in teacher table"
else
flgStudStoryCorrected = "yes"
response.write "there is a mactching record in teacher table"
end if
%>
<tr>
<td><input type=radio name=RR value=<%=session("story_id")%>;<%=session("loggedI D")%>></input> <%= session("loggedID") %></td>
<td> <%= session("logged_name") %></td>
<td> <%= RSA4.Fields ("story_id").Value %></td>
<td> <%= RSA5.Fields ("story_name").Value %></td>
<td> <%= RSA4.Fields ("status_student").Value%></td>
<td> <%= RSA4.Fields ("story_status_date").Value%></td>
<%
'assigning status student to a session variable
'session("statusStudent") = RSA4.Fields ("status_student").Value
'response.write session("statusStudent")
'if teacher has corrected the story then come here
if flgStudStoryCorrected="yes" then
%>
<Td> <%= RSA.fields("status_teacher").value%></td>
<Td> <%= RSA.fields("story_comment").value%></td>
<Td> <%= RSA.fields("story_grade").value%></td>
<Td> <%= RSA.fields("story_edited_date").value%></td>
<%
end if
%>
</tr>
<%
iCount2 = iCount2 + 1
rsa4.movenext
loop
%>

<p align="center"><input class="button" type="button" onClick="location='welStudent.asp';" value="Click to write a new story"></p>
<p align="center"><input class="button" type="button" onClick="location='draftedStory.asp';" value="Click to complete the drafted story"></p>
<p align="center"> <input class="button" type="submit" value="Click to view your grade sheet" name="submit"> </p>
</table>
</form>
</body>
</html>
Reply With Quote
  #2 (permalink)  
Old 09-19-03, 06:41 PM
TheLaughingBandit TheLaughingBandit is offline
Newbie Coder
 
Join Date: Aug 2003
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
i was a little unclear what you were asking but i decided to take a stab at it any way hope this helps, feel free to clearify and i can try again.


<SCRIPT LANGUAGE="JavaScript">
function change(SomethingValue) {
document.whatever.something.value=SomethingValue
}
</script>

<form method="POST" action="viewEditedStory.asp" name="teacher">
<input type="radio" name="radio" value="value1" onclick="change(this.value)">
<input type="radio" name="radio" value="value2" onclick="change(this.value)">
</form>

<form method="POST" name="whatever" action="draftedStory.asp">
<input type="hidden" name="something" value="">
</form>
<input type="button" value="Test Button" onclick="javascript:alert(document.whatever.someth ing.value);">
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
asp: URGENT! need to change code to create new form per id seala ASP 2 09-09-03 09:54 PM
passing values aspuser25 ASP 2 09-06-03 07:26 AM
passing array to hidden fields in form on next page? seala ASP 2 09-04-03 02:40 PM
Passing value from one form to another form sasi ASP 2 08-29-03 11:38 PM
asp: values in array not in order?? seala ASP 0 08-16-03 12:06 PM


All times are GMT -5. The time now is 03:34 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.