Go to Post You earn what you work for. - Akash Rastogi [more]
Home
Go Back   Chief Delphi > Technical > IT / Communications > Website Design/Showcase
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #8   Spotlight this post!  
Unread 13-06-2003, 12:41
seanwitte seanwitte is offline
Registered User
None #0116
Team Role: Engineer
 
Join Date: Nov 2002
Location: Herndon, VA
Posts: 378
seanwitte has a brilliant futureseanwitte has a brilliant futureseanwitte has a brilliant futureseanwitte has a brilliant futureseanwitte has a brilliant futureseanwitte has a brilliant futureseanwitte has a brilliant futureseanwitte has a brilliant futureseanwitte has a brilliant futureseanwitte has a brilliant futureseanwitte has a brilliant future
Send a message via AIM to seanwitte
odd

I tried it again quickly and it works fine using only one connection. When you use connection.Execute() it returns a forward-only read-only cursor, so the connection should still be able to service other calls. I'm pretty sure its just with Jet though, it works ok here on SQL Server.

Back to your first question. Say you want to let people vote in a poll. You have a table called VOTE with a poll_id pointing to the poll and a code for what they voted for, names vote_code. When you write the links to the screen, use querystrings appended to the URL and point them back to the same page:

page filename: poll.asp

Code:
Poll Response Links:
<A HREF="poll.asp?poll_id=1&vote_code=A">Vote for A</A>
<A HREF="poll.asp?poll_id=1&vote_code=B">Vote for B</A>
<A HREF="poll.asp?poll_id=1&vote_code=C">Vote for C</A>
In the header of poll.asp you need to intercept and handle that request. the querystring values are part of a collection hanging off of the Request intrinsic object. This is bad, but it will work:

Code:
<%'local functions
	sub SaveVote(conn, poll, vote, userIP)
		dim sql
		sql = "INSERT INTO VOTE (poll_id, vote_code, user_ip) " & _
		      "VALUES(" & poll & ", '" & vote & "', '" & userIP & "')"
		conn.Execute sql		
	end sub
	
	'variable declarations
	dim connString
	dim connection
	dim pollID
	dim voteCode
	dim IP
	
	'grab any incoming data
	pollID = Request.QueryString("poll_id")
	voteCode = Request.QueryString("vote_code")
	IP = Request.ServerVariables("REMOTE_ADDR")
		
	'validate the data. the poll_id is an integer
	'and the voteCode is a one character value
	if not isNumeric(pollID) then pollID = ""
	if len(voteCode) > 1 then voteCode = ""
	
	'if both the poll_id and vote_code are empty then 
	'redirect to the poll selection page
	if pollID = "" and voteCode = "" then 
		Response.Redirect "poll_list.asp"
		Response.End
	end if
	
	'open a database connection
	connection.Open connString
		
	'if the vote_code is not empty then log the vote	
	if  voteCode <> "" then
		SaveVote connection, pollID, voteCode, IP			
	end if
	
	'get the poll info and render the page
%>

Last edited by seanwitte : 13-06-2003 at 12:59.
 


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Any good HTML editors available? PMGRACER Website Design/Showcase 23 07-06-2003 21:02
NASA-TV links for Regionals Broadcasts archiver 2001 1 24-06-2002 01:59
What's better, PERL/cgi or PHP/my_sql? mikefrei Programming 10 27-05-2002 22:50
Webcast Links! Post links here! activemx Championship Event 0 21-04-2002 22:33
Rookie needs helpful programming links :) DanL Programming 15 23-02-2002 20:39


All times are GMT -5. The time now is 00:14.

The Chief Delphi Forums are sponsored by Innovation First International, Inc.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi