| Author |
Thread Statistics | Show CCP posts - 26 post(s) |

FlashBack
|
Posted - 2004.11.18 14:44:00 -
[1]
Great Job on all the testing and samples i've seen so far. Has been a while since i worked on our corps ingame website. Now i want it to be compatible for shiva, and offcourse use all of it's new futures.
Server is offline now though, and in the very first post Traveler mentioned the CTRL + ALT + SHIFT + B combination for popping up the IGB. That doesn't seem to be working for me.
I have copied my eve folder, i have installed all shiva patches (i'm on 2927 now) and when i hit the key combination nothing happens at all. I couldn't find anything in this thread about this option being removed. Anyone able to help me out here?
|

FlashBack
|
Posted - 2004.11.18 14:44:00 -
[2]
Great Job on all the testing and samples i've seen so far. Has been a while since i worked on our corps ingame website. Now i want it to be compatible for shiva, and offcourse use all of it's new futures.
Server is offline now though, and in the very first post Traveler mentioned the CTRL + ALT + SHIFT + B combination for popping up the IGB. That doesn't seem to be working for me.
I have copied my eve folder, i have installed all shiva patches (i'm on 2927 now) and when i hit the key combination nothing happens at all. I couldn't find anything in this thread about this option being removed. Anyone able to help me out here?
|

FlashBack
|
Posted - 2004.11.30 17:22:00 -
[3]
Edited by: FlashBack on 30/11/2004 17:28:24 Working on an IGW (InGame website) for my corp.
Doing a form now to store mining operations into a database. The form is pretty simple, just using a plain form with the following attributes
name="input_ore_mining" action="writedb_miningop.asp" method="post"
for the input fields i use the following
type="text" name="veldspar" value="0" (default value)
then when i use ASP to retrieve all the info that was filled in i get the following results (for the input field mentioned above).
veldspar 0, 0
The script i use is quite basic
for each item in request.Form response.write item response.write (request.Form(item)) next
I only get this extra 0 when using it in the ingame browser, IE or other browser only returns 1 zero. Also writing this into a database will give me 2 records 1 blank and 1 with the proper info) instead of just the 1 record i want to store. 
any workaround for this? the default value for my input fields is pretty important
thanx in advance...
|

FlashBack
|
Posted - 2004.11.30 17:22:00 -
[4]
Edited by: FlashBack on 30/11/2004 17:28:24 Working on an IGW (InGame website) for my corp.
Doing a form now to store mining operations into a database. The form is pretty simple, just using a plain form with the following attributes
name="input_ore_mining" action="writedb_miningop.asp" method="post"
for the input fields i use the following
type="text" name="veldspar" value="0" (default value)
then when i use ASP to retrieve all the info that was filled in i get the following results (for the input field mentioned above).
veldspar 0, 0
The script i use is quite basic
for each item in request.Form response.write item response.write (request.Form(item)) next
I only get this extra 0 when using it in the ingame browser, IE or other browser only returns 1 zero. Also writing this into a database will give me 2 records 1 blank and 1 with the proper info) instead of just the 1 record i want to store. 
any workaround for this? the default value for my input fields is pretty important
thanx in advance...
|

FlashBack
|
Posted - 2004.11.30 22:17:00 -
[5]
I think i have found the problem:
this form:
<html> <head> <title>testing forms</title> </head>
<body> <form action="test2.asp" method="post"> <table> <tr> <td> <input type="text" name="charname" value="flashback"> </td> </tr> <tr> <td> <input type="submit" value="submit"> </td> </tr> </table> </form> </body> </html>
Will not work since it is styled with a table. I've been looking at the different test pages and see no difference in the html code. For some strange reason when i try to retrieve the information that was sent by this page i get double data.
So the action <%=request.form("charname")%> would give me the result "flashback, flashback".
When i kick out the HTML code for the table i get what i want, just "flashback". But i want to give some layout to my forms so i want to be able to use the table.
What the **** am i doing wrong, or what the **** is wrong with the IGB.
|

FlashBack
|
Posted - 2004.11.30 22:17:00 -
[6]
I think i have found the problem:
this form:
<html> <head> <title>testing forms</title> </head>
<body> <form action="test2.asp" method="post"> <table> <tr> <td> <input type="text" name="charname" value="flashback"> </td> </tr> <tr> <td> <input type="submit" value="submit"> </td> </tr> </table> </form> </body> </html>
Will not work since it is styled with a table. I've been looking at the different test pages and see no difference in the html code. For some strange reason when i try to retrieve the information that was sent by this page i get double data.
So the action <%=request.form("charname")%> would give me the result "flashback, flashback".
When i kick out the HTML code for the table i get what i want, just "flashback". But i want to give some layout to my forms so i want to be able to use the table.
What the **** am i doing wrong, or what the **** is wrong with the IGB.
|

FlashBack
|
Posted - 2004.12.02 19:07:00 -
[7]
Great! thanx a lot.
this means i have to do that trick with every textbox i use though and with the mining form there are 48 different ore types. I'd rather have them tell me it's a problem with the ingame browser.
Then again i could try and replace the table with CSS, but would that work correctly in the igb? I'll try do do that .. if it doesn't work i'll try to make some automated version of your script.
Cheers,
Flash
|

FlashBack
|
Posted - 2004.12.02 19:07:00 -
[8]
Great! thanx a lot.
this means i have to do that trick with every textbox i use though and with the mining form there are 48 different ore types. I'd rather have them tell me it's a problem with the ingame browser.
Then again i could try and replace the table with CSS, but would that work correctly in the igb? I'll try do do that .. if it doesn't work i'll try to make some automated version of your script.
Cheers,
Flash
|

FlashBack
|
Posted - 2004.12.09 09:48:00 -
[9]
Any info on forms inside tables returning double values (using ASP)?
example:
<input name="charname" value="flashback">
would return the value: "flashback, flahback"
I've seen a workaround but no official confirmation that this is indeed bugged.
|

FlashBack
|
Posted - 2004.12.09 09:48:00 -
[10]
Any info on forms inside tables returning double values (using ASP)?
example:
<input name="charname" value="flashback">
would return the value: "flashback, flahback"
I've seen a workaround but no official confirmation that this is indeed bugged.
|

FlashBack
|
Posted - 2004.12.10 18:56:00 -
[11]
version: 3104
I just tested the form processing, the bug with double data being retrieved from a form seems to be fixed. Great work, thanx alot for that.
It looks as if the border width of 1px (CSS border-width:1px) now renders as 2 pixels.
Also when creating 2 tables on the same page, only the first table will be rendered with a border (using CSS). example
-stylesheet- table.mining { border-style: solid; border-width: 1px; }
-web page-
<table id="mining"> <tr><td>some data</td></tr> </table>
<table id="mining"> <tr><td>some data</td></tr> </table>
only the first table will be rendered with a 1 pixel border, the second table gets no border.
Cheers,
FlashBack
|

FlashBack
|
Posted - 2004.12.10 18:56:00 -
[12]
version: 3104
I just tested the form processing, the bug with double data being retrieved from a form seems to be fixed. Great work, thanx alot for that.
It looks as if the border width of 1px (CSS border-width:1px) now renders as 2 pixels.
Also when creating 2 tables on the same page, only the first table will be rendered with a border (using CSS). example
-stylesheet- table.mining { border-style: solid; border-width: 1px; }
-web page-
<table id="mining"> <tr><td>some data</td></tr> </table>
<table id="mining"> <tr><td>some data</td></tr> </table>
only the first table will be rendered with a 1 pixel border, the second table gets no border.
Cheers,
FlashBack
|

FlashBack
|
Posted - 2004.12.21 20:28:00 -
[13]
Edited by: FlashBack on 21/12/2004 21:08:09 - post deleted by FlashBack -
Problem found to be internal.
|

FlashBack
|
Posted - 2004.12.21 20:28:00 -
[14]
Edited by: FlashBack on 21/12/2004 21:08:09 - post deleted by FlashBack -
Problem found to be internal.
|

FlashBack
|
Posted - 2004.12.22 18:05:00 -
[15]
I found a new problem concerning forms.
taking the next form as an example:
<form name="testform" action="nextpage" method="post"> <input type="text" name="textbox1" tabindex="1"> <input type="text" name="textbox2" tabindex="2"> <input type="text" name="textbox3" tabindex="3"> </form>
When i want to process this form with the following ASP code:
<% For x = 1 To Request.Form.count() Response.Write(Request.Form.key(x)) Response.write("<br>") Next %>
The result is that the form items are all mixed up. They don't follow the order i gave them in the forum. This works perfectly in IE and Firefox.
Kind regards,
FlashBack
|

FlashBack
|
Posted - 2004.12.22 18:05:00 -
[16]
I found a new problem concerning forms.
taking the next form as an example:
<form name="testform" action="nextpage" method="post"> <input type="text" name="textbox1" tabindex="1"> <input type="text" name="textbox2" tabindex="2"> <input type="text" name="textbox3" tabindex="3"> </form>
When i want to process this form with the following ASP code:
<% For x = 1 To Request.Form.count() Response.Write(Request.Form.key(x)) Response.write("<br>") Next %>
The result is that the form items are all mixed up. They don't follow the order i gave them in the forum. This works perfectly in IE and Firefox.
Kind regards,
FlashBack
|

FlashBack
|
Posted - 2004.12.31 12:01:00 -
[17]
Originally by: Sundace II Edited by: Sundace II on 23/12/2004 13:06:45 This isn't a form-bug, looks more like a programming bug. This isn't realy the best way to get input from a form in ASP. In the way you use it it depends on browser and server how the variables are giving true. If i try the above code on my own server i get the results of my forms in alphabetic order.
Try using the request methode to get the results for use in your site. That way you always know for certain that you are using the right variables of the form.
ex. response.write request("textbox1") response.write request("textbox2") or textbox1 = request("textbox1")
If this isn't a browser bug, then why does this only happen in the EVE browser, and not in IE , Mozilla and Netscape? If this would be a programming or webserver problem, wouldn't this be a problem for all browsers?
I usually use the same as you descibed Sundace, but with very large forms with many values that can be quite a boring job. I've always wanted to create a page that handles forms automaticly and this worked before on other sites.
Any info from ISD on this? browser or server problem ?
|

FlashBack
|
Posted - 2004.12.31 12:01:00 -
[18]
Originally by: Sundace II Edited by: Sundace II on 23/12/2004 13:06:45 This isn't a form-bug, looks more like a programming bug. This isn't realy the best way to get input from a form in ASP. In the way you use it it depends on browser and server how the variables are giving true. If i try the above code on my own server i get the results of my forms in alphabetic order.
Try using the request methode to get the results for use in your site. That way you always know for certain that you are using the right variables of the form.
ex. response.write request("textbox1") response.write request("textbox2") or textbox1 = request("textbox1")
If this isn't a browser bug, then why does this only happen in the EVE browser, and not in IE , Mozilla and Netscape? If this would be a programming or webserver problem, wouldn't this be a problem for all browsers?
I usually use the same as you descibed Sundace, but with very large forms with many values that can be quite a boring job. I've always wanted to create a page that handles forms automaticly and this worked before on other sites.
Any info from ISD on this? browser or server problem ?
|
| |
|