|
|
 |
|
August 6th, 2004, 05:16 PM
|
#21
|
|
Highly Reputable Member
Join Date: Aug 2003
Location: Australia
Posts: 662
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
Ok, I will.. Making games takes many years to learn.. There is a lot of programming involved in it. THere is ActionScript, and then you need to know database languages, And Server Side Languages. You will need something like Flash to develop the games in.. Or director.. Director has it's own language too that you'd have to learn. I'd say you could do this if you studied for about 2-3 years, or if you went to school for it. This isn't something that can be told to you on how to do it. Also, You have the information up above on how to do everything your looking for. Give a man a fish, and he will be fed for a day, but Teach him to fish and he will be fed for life... We have showed you what you need, now it's your turn to try and apply it. If you get stuck along the way post your code and ask for help. That way you will learn from it.
|
|
|
August 7th, 2004, 01:57 PM
|
#22
|
|
WebForumz Member
Join Date: Jun 2004
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
Ok thx for the help. Now I need help with my redirection problem!!!!!!!!!!!
|
|
|
August 7th, 2004, 07:31 PM
|
#23
|
|
Highly Reputable Member
Join Date: Aug 2003
Location: Australia
Posts: 662
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
What's the problem? You haven't asked a question yet... Show us your code and tell us what your problem is.
|
|
|
August 9th, 2004, 12:49 PM
|
#24
|
|
WebForumz Member
Join Date: Jun 2004
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
My problem is I have to different types of user accounts. But I want them to be able to go to the contacts page but be able to get back to the logined user pages? (go to my website and create an account and check this out if you can't understand me!)I think I need a redirection script!
|
|
|
August 9th, 2004, 02:02 PM
|
#25
|
|
Highly Reputable Member
Join Date: Aug 2003
Location: Australia
Posts: 662
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
hrmm.. I created a test account... User: test Pass: test and still I don't understand what the problem is... You need to create an entire user's area... which you haven't done. That will make it where you can go to the contacts page and everything... Another thing you can do is to make your links dependant on the account type.... FE-
Code:
If recordSet("user") = "1" Then
Response.Write("<a href='index.asp'>")
Response.Write("Home")
Response.Write("</a>")
Else If recordSet ("User") = "2" Then
Response.Write("<a href='index2.asp'>")
Response.Write("Admin Section")
Response.Write("</a>")
End If
End IF
That way your links can take you to where you are allowed to go depending on your acount type... Also you can add an " If recordSet("User") = "" Then " so that people who are not logged in will have a navigational menu. I think this will fix all of your linking problems. This is the problem that I saw with your navigation and this is a way to fix it. Hope that helps.
Wade
|
|
|
August 11th, 2004, 02:04 PM
|
#26
|
|
WebForumz Member
Join Date: Jun 2004
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
thx that will do just the trick I hope?!!!!
|
|
|
August 11th, 2004, 02:28 PM
|
#27
|
|
WebForumz Member
Join Date: Jun 2004
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
OK.I'm back ! I tried that script but it creates a link that the user has to click on I want the user to click home on the navigation menu then be redirected to the right page can I do that?
|
|
|
August 11th, 2004, 03:56 PM
|
#28
|
|
Highly Reputable Member
Join Date: Aug 2003
Location: Australia
Posts: 662
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
dude..
Code:
If RecordSet("User") = "1" Then
Response.Write("<a href='index.htm'>")
Response.Write("Home")
Response.Write("</a>")
Else If RecordSet("User") = "2" Then
Response.Write("<a href='indexBlah.htm'>")
Response.Write("Home")
Response.Write("</a>")
Else
Response.Write("<a href='indexBlah2.htm'>")
Response.Write("Home")
Response.Write("</a>")
End If
End If
That's what I meant to do with the above code... There is no need to redirect. This code should replace ALL your navigation, not be used as a special page.
|
|
|
August 11th, 2004, 03:58 PM
|
#29
|
|
Elite Veteran
SuperMember
Join Date: Jul 2003
Location: Southern UK
Age: 35
Posts: 3,126
Thanks: 28
Thanked 22 Times in 19 Posts
|
The title of this thread is : search function in ASP!
If this thread continues to wander off topic, i shall lock it.
If you want help on something other than a search function in ASP, then please START A NEW THREAD.
|
|
|
August 12th, 2004, 04:23 AM
|
#30
|
|
Highly Reputable Member
Join Date: Jul 2003
Location: Ipswich, UK
Posts: 686
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
Court Jester, please do not encorage this by responding with an answer, tell the person you will answer them if they start a seperate thread.
|
|
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|