Jump to content

beccatigger

Member
  • Posts

    327
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by beccatigger

  1. Hiya, I'm on a shared hosting plan and making a site (asp) with lots of pages which I don't want users to be able to access by simply typing the url into their browser. I've thought of a couple of ways to do it like seeing if the http_referrer was the page I posted from and perhaps moving the pages above wwwroot but just wondered if these are viable and if there are any other suggestions of ways to stop people accessing them? Also how do I stop people accessing the images folder? This is all bearing in mind I can't change the permissions on the folders.
  2. I'm having this annoying problem with msn messenger v. 8.0.0812.00. All my contacts online also show as offline as well, and any that are offline have another offline entry too. I don't know what an earth is going on. I uninstalled it and reinstalled it but to no avail. Any ideas how I can solve the problem? Oh and also my msn display name doesn't update from location to location.......
  3. I'm having trouble trying to insert checkbox values into an access database. Basically, I've got a form with checkboxes in and checkbox values. It takes the checked checkbox values, then split them into an array. Now I want to put the array values into a table (on seperate rows, so multiple inserts at once). The table structure is CustomerNumber & CustomerType which are both numbers. The customernumber is the same for each checkbox value inserted during the form submission. Currently I can get this code to work to write out each checkbox value like this: <% CT= Request.Form("ctcheckbox") myArray=Split(CT,",") For i=LBound(myArray) to UBound(myArray) Response.Write myArray(i) Next%> But I need to include it in this code to insert it into the database, but I don't know how to reference the array: <% if(Request.Form("Comnum") <> "") then Command1__CN = Request.Form("Comnum") %> <%set Command1 = Server.CreateObject("ADODB.Command") Command1.ActiveConnection = MM_conn2_STRING Command1.CommandText = "INSERT INTO CustomerTypes (CustomerNumber, CustomerType) VALUES (" + Replace(Command1__CN, "'", "''") + ",'myArray') " Command1.CommandType = 1 Command1.CommandTimeout = 0 Command1.Prepared = true Command1.Execute() %>
  4. Hiya, Having considerable trouble due to my inexperience with asp. I don't have time to learn php so that's out. Basically I've got a Company table and a customer type table, and a customer types table (link table) Where customer types has the primary keys from the other tables: company type and company I've made a customer details edit form where you can change all their details in one form so you can edit data from any tables. When you edit their customer types it'll show checked checkboxes where the customertype from customertypes and the customernumber matches the customer type in Customertype table So you got it a bit like this: [x] Type 1 Customer [ ] Type 2 Customer [x] Type 3 customer [x] type 4 customer OK so what I'm trying to do is compare the values of the checkboxes and if they've changed then delete or insert the values into customertypes as necessary. I tried to do it with the command function (cos you can't use their insert / delete record thing more than once) in DW but it won't pull the variables out for some reason. Also it doesn't seem to like me having more than one variable. Anyway here's the section of code (command deleted cos it just kept saying it was wrong): <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <!--#include file="Connections/conn2.asp" --> <% Dim Recordset1__CN Recordset1__CN = "1" If (Request.Form("CompanyNumber") <> "") Then Recordset1__CN = Request.Form("CompanyNumber") End If %> <% Dim Recordset1 Dim Recordset1_numRows Set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_conn2_STRING Recordset1.Source = "SELECT * FROM SelectCusType WHERE CompanyNumber=" + Replace(Recordset1__CN, "'", "''") + "" Recordset1.CursorType = 0 Recordset1.CursorLocation = 2 Recordset1.LockType = 1 Recordset1.Open() DO WHILE NOT Recordset1.EOF IF x <> total THEN CusType = CusType & Recordset1.Fields.Item("Number").Value & "," ELSE CusType = CusType & Recordset1.Fields.Item("Number").Value END IF x = x + 1 Recordset1.MoveNext LOOP Recordset1_numRows = 0 %> <% Dim Recordset2 Dim Recordset2_numRows Set Recordset2 = Server.CreateObject("ADODB.Recordset") Recordset2.ActiveConnection = MM_conn2_STRING Recordset2.Source = "SELECT * FROM Company" Recordset2.CursorType = 0 Recordset2.CursorLocation = 2 Recordset2.LockType = 1 Recordset2.Open() Recordset2_numRows = 0 %> <% Dim Recordset3 Dim Recordset3_numRows Set Recordset3 = Server.CreateObject("ADODB.Recordset") Recordset3.ActiveConnection = MM_conn2_STRING Recordset3.Source = "SELECT * FROM [Customer Type] ORDER BY Number" Recordset3.CursorType = 0 Recordset3.CursorLocation = 2 Recordset3.LockType = 1 Recordset3.Open() Recordset3_numRows = 0 %> <% Dim Repeat1__numRows Dim Repeat1__index Repeat1__numRows = -1 Repeat1__index = 0 Recordset1_numRows = Recordset1_numRows + Repeat1__numRows %> <% Dim Repeat2__numRows Dim Repeat2__index Repeat2__numRows = -1 Repeat2__index = 0 Recordset3_numRows = Recordset3_numRows + Repeat2__numRows %> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <form name="crap" > <input type="text" name="ComNum" value="<%=(Recordset2.Fields.Item("CompanyNumber").Value)%>"> <% While ((Repeat2__numRows <> 0) AND (NOT Recordset3.EOF)) %> <input type="checkbox" name="ctcheckbox" value="<%=(Recordset3.Fields.Item("Number").Value)%>" <% If instr(CusType,Recordset3.Fields.Item("Number").Value) > 0 Then Response.Write("Checked") %>> <%=(Recordset3.Fields.Item("Customer Type").Value)%> <br> <% Repeat2__index=Repeat2__index+1 Repeat2__numRows=Repeat2__numRows-1 Recordset3.MoveNext() Wend %> <input type="submit" value="go"> </form> </body> </html> <% Recordset1.Close() Set Recordset1 = Nothing %> <% Recordset2.Close() Set Recordset2 = Nothing %> <% Recordset3.Close() Set Recordset3 = Nothing %> Now I'm assuming I've got to do some comparison of the values in the table and then if they#'re different, insert or delete, is this correct? Any help would be muchly appreciated as I've wasted too many hours battling against DW and ASP!
  5. [sorry can you move my post to programming....apologies] Hi Guys, I'm working on a stupid uni project which I am totally stuck on and I've been going over and over and now I've got to the point where I've basically got to hand it in and I really need some help. Basically I've got to make a ball bounce around off some fixed walls and we HAVE to use collision trees. (I mean don't even get me started on how stupid that is) The ball has to move at a constant speed, bounce off the walls and then keep moving post-collision All I can do is get the ball to move.....thats it. I'd be really grateful for ANY help you can give me, can't find this ANYWHERE and you guys have always been so good helping me out in the past.......I just feel so dumb for not being able to do this Here's what I got so far: for(int i = 0; i <=3; i++) { if(ballx >= rootNode.child.xstart && bally >= rootNode.child.ystart && ballx <= rootNode.child.xend && bally <= rootNode.child.yend) { System.out.println("ball found in sector"+rootNode.child.name); } if (rootNode.child.name=="A") { for(int a = 0; a <=3; a++){ if (ballx >= rootNode.child[0].child[a].xstart && bally >= rootNode.child[0].child[a].ystart && ballx <= rootNode.child[0].child[a].xend && bally <= rootNode.child[0].child[a].yend) { System.out.println("ball found in sector"+rootNode.child[0].child[a].name); } } } else if(rootNode.child.name=="B") { for(int a = 0; a <=3; a++){ if (ballx >= rootNode.child[0].child[a].xstart && bally >= rootNode.child[0].child[a].ystart && ballx <= rootNode.child[0].child[a].xend && bally <= rootNode.child[0].child[a].yend) { System.out.println("ball found in sector"+rootNode.child[0].child[a].name); } } } } I urgently and eagerly await your help!!!!! Thanks Becs
  6. Hi, another problem with my Charon cart I've got to the checkout and I can add my order details (OrderID etc etc) My tables in ms access are the following: Orders table: OrderID(primary key created during asp coding) OrderDetails table: OrderDetailsID (autonumber, primary key) OrderID (text, linked one to many with Orders.OrderID) etc etc When I try to do the function on the page, it will only add the OrderID to the OrderDetails table if it's the OrderDetails field is set to text and it's the primary key! (Thus removing the relationship between the two tables) Have also allowed session variables in my browser rsOrders gets the OrderID from Orders rsOrderDetails gets all the fields from OrderDetails (except for OrderDetailID as it's an autonumber) If anyone could help me out as to why it will only allow it when it's in the OrderDetailsID field that would be great.
  7. OK, It took me a day, but I figured it out You have to make a form, but it doesnt need a recordset as I suspected) However, the results page needs to link from that pull down menu. So u name the <select> tag so I named it category. Then when I made the recordset for the second page, you then filter the subject_area from books table with the url category, so when it flips onto the results page,then url would be, e.g.: search.asp?category=IT Here's the code examples, in case anybody ever has to go through the hell of making one of these babys: and the results page looks like this:
  8. Hi, Long time no see! I've got a major problem that's annoying me loads! I've got this big project website that I've got to create using ASP and running a MS access db behind. It's a book database with a book table with book name, book ID, subject_area, etc.etc. I want to make a pull down menu with the subject areas in so you can display the results from a chosen category. So far, for the form, I've got this: this is the search page search.asp then the results.asp is this: The bit hightlighted in red is wrong but i don't know how to reference it (maybe to the query string but I don't know how to?!) I'd be grateful for any help!
  9. I guess it's only america, I didnt get an email...
  10. I think it's only when u get successful invites that u get a lot more. As for new people, I don't know, theys a bit random as to when they hand em out. But if anyone wants Gmail, I'm gonna say PM me. Is tht pokies with everyone. Doggie I bet they are high quality steak knives....
  11. already had it, made no difference. Like i said, it's the evilest toolbar in the world
  12. Has anybody else watched Space Ghost, it's so incredibly clever. It used to a cartoon but got cancelled in 1968 cos it was rubbish. Then, this guy took the characters and made it into a chat show. The chat show is set after a space war and he has "prisoners " The prisoners people he interviews are real people, e.g. Bjork and they do these interviews but they do online and offline editing so they can make people look really stupid, and make it funnier etc. Please someone tell me you've seen it!
  13. Really Doggie? That's strange, maybe that's one of the problems of the beta version. Might well be worth contacting them about it.
  14. I just found out lycos now offer 1GB, with 30 free SMS and "advanced spam filters"...yeah well, they still won't convince me to join. I host with them and their servers r rubbish, always down
  15. Apologies Drew, yes, ur right bout people getting so hett up, hence I said my piece. I don't wanna cause trouble.
  16. Lets face it, Yahoo don't wanna lose their customers to GMail. But gmails' gonna be so much better because you can actually search thru ya mail and stuff instead of going daaan the list. Plus we all love google so show them some respect by having their email addy too. Also, I'd just like to add, that Hotmail have gotta be worse in the way of spam, not a day goes by without me being asked if I'd like some viagra or a penis enlargement. Funny that, cos last time I looked, I was a girl.........
  17. Don't worry, I reinstalled, something screwy, think MYSeach *the evilest toolbar in the world ever* had something to do with it cos it's poifectly fine now
  18. Leeta, PM me ur address, I have some invites but in future, I don't wanna hear anyone moaning, it's only a flippin email account. It's like flies around a fresh pile of poo. Now, I have 2 left, does anyone else want one for themselves, who doesn't already have one and not for their friends?
  19. Well if you read the beginning of this post leeta it said I had to start again. I didn't see the point in going through the thread. So go get ur strop off, I'm sure I will have some more very soon to give out, although you've bin pretty eggy so I might not bother.
  20. no leeta ur too late. Jesus you other people, be patient, I've been painting and getting annoyed with car washes that take my numberplate off. I will send ur invites now xx
  21. ok doggie, gosh (he sent me a pm) and darkphoenix, you can all have one, 1 more person to go. Doggie honey, PM me ur addy
  22. RIGHT, ANYONE THAT ALREADY HAS A GMAIL ACCOUNT, BUT IT TRYING TO SCAB ONE FOR THEIR FRIENDS CAN FORGET IT, COS IT'S NOT FAIR ON THE OTHERS WHO DON'T HAVE ONE. AND YES, I WILL FIND OUT IF YOU HAVE ONE ALREADY SO PLEASE BE CONSIDERATE AND LET SOMEONE ELSE HAVE YOUR INVITE... I will contact the first four people to want one for themselves by private message later Love becs
  23. KS3? ha ha ha ha piece of wee. I managed to avoid ever having to do any official exams before 16 because I was in a private school and it's only state ones that have to do it. Try doing a university degree, tho to be honest, A-levels were harder. PS, I did the duffy one for GSCE-jeezus, that was 3 years ago. I didn't like the depressing war ones. Just found out the result for my actionscript module today-71% woohoo! Rock on
×
×
  • Create New...