www.webdeveloper.com

Search:

Type: Posts; User: yamaharuss

Page 1 of 5 1 2 3 4

Search: Search took 0.05 seconds.

  1. Simple. The object, which is Conn, does not...

    Simple.

    The object, which is Conn, does not exist so there is no object to execute.

    It appears you may have copy/pasted parts of your code from different sources.

    Change line 20 from

    Set...
  2. http://www.codeguru.com/csharp/.net/net_asp/articl...

    http://www.codeguru.com/csharp/.net/net_asp/article.php/c19297/Pure-ASP-File-Upload.htm
  3. How about sharing your solution for future...

    How about sharing your solution for future searches?

    Here's a solution for SQL Server:

    sql = "insert into table(row) values(value) SELECT @@IDENTITY"
    Set rs = Conn.Execute(sql).NextRecordSet
    ...
  4. was the object installed/registered successfully?...

    was the object installed/registered successfully? You can upload without a COM object too.
  5. Replies
    1
    Views
    2,134

    Why would you want to display that? Your script...

    Why would you want to display that? Your script would run so fast that the user would never see much. As for using Javascript, it's a client-side language and can't run inside a server-side script.
  6. Replies
    1
    Views
    526

    If you validate all incoming requests you'll be OK

    If you validate all incoming requests you'll be OK
  7. Replies
    1
    Views
    184

    What do you mean the links are in the files? Are...

    What do you mean the links are in the files? Are you looking in the actual source files on the server or doing a view source in the browser?

    My bet is the injection is in the database.
  8. Replies
    1
    Views
    183

    Wow, a very vague question. The answer is yes.

    Wow, a very vague question. The answer is yes.
  9. Replies
    1
    Views
    163

    Here's the problem: Data source name not found...

    Here's the problem: Data source name not found and no default driver specified
  10. You would have to show your code. The only time...

    You would have to show your code. The only time you would read the cookie is if the session is lost.
  11. Cookies don't timeout, they expire on the date...

    Cookies don't timeout, they expire on the date you set them to expire on. When a session expires, you can check to see if a cookie is set before loading the page. If the cookie is set you can restore...
  12. Use cookies.

    Use cookies.
  13. Replies
    4
    Views
    142

    Just assign your record value once.

    Just assign your record value once.

    <%
    strLayoutName = rs("LayoutName")
    %>

    <OPTION value="<%=strLayoutName%>"><%=strLayoutName%></OPTION>
  14. Replies
    5
    Views
    2,356

    Guess I'm pointing out the obvious but have you...

    Guess I'm pointing out the obvious but have you verified the component is installed?
  15. Replies
    12
    Views
    1,117

    Looks like you have an ambiguous bracket here: ...

    Looks like you have an ambiguous bracket here:

    <&#37;
    Repeat1__index++;
    statesearch.MoveNext();
    }
    %>
  16. Replies
    12
    Views
    1,117

    If your error is: /TMP7gglz7tv3j.asp, line 475...

    If your error is:

    /TMP7gglz7tv3j.asp, line 475

    Than there most definitely is a line 475 in TMP7gglz7tv3j.asp
  17. Replies
    12
    Views
    1,117

    This was your error: Expected ';' ...

    This was your error:


    Expected ';'

    /TMP7gglz7tv3j.asp, line 475

    Set statesearch = Nothing

    But the code you just posted had the semicolon on that line as far as I can tell. Post your code...
  18. Replies
    12
    Views
    1,117

    Looks like you fixed it.

    Looks like you fixed it.
  19. Replies
    4
    Views
    1,039

    Your connection variable is missing the equal...

    Your connection variable is missing the equal sign.
  20. Replies
    12
    Views
    1,117

    Read your error again. It tells you EXACTLY what...

    Read your error again. It tells you EXACTLY what you need to do.
  21. Replies
    3
    Views
    871

    Like burnme stated, ASP is the wrong forum for...

    Like burnme stated, ASP is the wrong forum for this.

    Google is your friend.
  22. Set Conn=Server.CreateObject("ADODB.Connection")...

    Set Conn=Server.CreateObject("ADODB.Connection")
    Conn.Open "PROVIDER=SQLOLEDB;" & _
    "DATA SOURCE=DATABASEIPADDRESS;DATABASE=DATABASENAME;" & _
    "USER...
  23. Replies
    5
    Views
    984

    My guess is you are setting the variable on that...

    My guess is you are setting the variable on that page whether it is already set or not. Like burnme said, you need to post your code.

    You may need to do something like:

    if sessionvalue = ""...
  24. Is there a reason you don't want to use a...

    Is there a reason you don't want to use a DSN-less connection?
  25. Replies
    2
    Views
    864

    You need to explain what you want more clearly

    You need to explain what you want more clearly
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles