Submit Your Article Webforumz RegistrationAnnouncements Contact Webforumz StaffContact
Home Resources Blogs Meet the Team Contact Register
 

Go Back   WebForumz.com > The Code > Classic ASP

Closed Thread
 
LinkBack Thread Tools
Old 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 courtjester is on a distinguished road
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.
courtjester is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old 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 Amari is on a distinguished road
Ok thx for the help. Now I need help with my redirection problem!!!!!!!!!!!
Amari is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old 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 courtjester is on a distinguished road
What's the problem? You haven't asked a question yet... Show us your code and tell us what your problem is.
courtjester is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old 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 Amari is on a distinguished road
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!
Amari is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old 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 courtjester is on a distinguished road
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
courtjester is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old 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 Amari is on a distinguished road
thx that will do just the trick I hope?!!!!
Amari is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old 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 Amari is on a distinguished road
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?
Amari is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old 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 courtjester is on a distinguished road
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.
courtjester is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old August 11th, 2004, 03:58 PM   #29
Rob
Elite Veteran
SuperMember
 
Rob's Avatar
 

Join Date: Jul 2003
Location: Southern UK
Age: 35
Posts: 3,126
Blog Entries: 7
Thanks: 28
Thanked 22 Times in 19 Posts
Rep Altering Power: 0 Rob is a jewel in the rough Rob is a jewel in the rough Rob is a jewel in the rough
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.
__________________
Rob - Webforumz Founder
Web Designer Support Network || Personal Project: Sanctuary for Student Midwives
Rob is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old 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 Smokie will become famous soon enough
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.
Smokie is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Closed Thread

Bookmarks

Tags
search , function , asp


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

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Is this a suitable 'search CSV' function? Aso PHP 8 December 18th, 2007 11:19 AM
Adding a search function bob_visualefx HTML, XHTML and CSS 10 April 17th, 2006 08:25 AM
criteria search function akdiver Other Languages 2 August 26th, 2005 08:10 PM


Search Engine Optimization by vBSEO 3.2.0 RC8