Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: testare
  • Order by date
  1. testare

    Quick Excel question

    Excellent, it works now. Many thanks.
  2. testare

    Quick Excel question

    I have this in my code. Nothing happens, when this is executed. Same code in vb works. %> Set ExcelApp = Server.CreateObject("Excel.Application") ExcelApp.Application.Visible = True Set ExcelBook = ExcelApp.Workbooks.Add ExcelBook.Worksheets(1).Cells(2, 2).Font.Name = "Verdana"...
  3. testare

    Quick Excel question

    Is it possible to export data from a recordset to excel? If so do you know any links that can i help me getitng started? Of course it should be in ASP
  4. testare

    Response.write

    Okey, i can't do as I want with OnClick? FesterSXS; I've changed it as you said but it doesn't help
  5. testare

    Response.write

    here is a link at at calender. http://g.1asphost.com/testare/cal.asp Try typing somtething and then press post, you will se what i mean.
  6. testare

    Response.write

    It didn't work still get nothing when i at line 209 Response.write the sqlstring
  7. testare

    Response.write

    I'm sorry for my stupidity, that I pointed out the wrong lines. I meant line 284 and 207. Thanks, i will directly try this out and get back to you if it works.
  8. testare

    Response.write

    Here is my whole code? http://www.aspsidan.se/code/default.asp?c=5563 At line 274 i use a button that i want to send my whole code with the text of the textarea. At line 200 i want to insert the text that i have in the textarea into the database, but there is no text to insert. Thats my big...
  9. testare

    Response.write

    I only have this code. How can i get the value that i typed in the textarea to be printed with Response.Write Request.Form("text") <%Response.Write Request.Form("text") %> <textarea name="text"></textarea> <a href="nerd.asp">link</a>
  10. testare

    OnClick call asp file

    It works now, Tarwin. onClick="location.href='button.asp?action=insert'" Thanx
  11. testare

    OnClick call asp file

    I tried it like this. onClick='location.href.button.asp?action=insert' But it didn't work. How should i type it?
  12. testare

    OnClick call asp file

    I would like to call the insert action where pressing the button. <%If Request.QueryString ("action") = "insert" Then Response.Write("okok") End If%> <input type="button" value="Post" onClick="cal.asp?action=insert"> I'm i thinking wrong?
  13. testare

    Format + ASP?

    I should check what could be wrong, insted of doing cut & paste. Works perfekt now DotNetGnat, thank you.
  14. testare

    Format + ASP?

    Get an error message with only this. <% For i = 0 To 42 i= "00" & "i" Response.Write Right(i,2) Next %>
  15. testare

    Format + ASP?

    I would like to loop and then show it on the browser. For example 1 should be 01 and so on. I don't want the numbers to be shown like this. 2 3 4 I would like to have the number displayed like this. 01 02 03 04 I noticed that format doesn't work in ASP like in Visual Basic. In vb i do it like...
  16. testare

    Clear querystring in browser

    I'm really sorry. I've put the response.redirect under end if. Thanx for the help.
  17. testare

    Clear querystring in browser

    I have tried with your solution but it doesn't help. <% If Request.QueryString("action") = "login" Then Response.Write("Just testing") End If If Len(Request.QueryString("")) > 0 Then Response.Redirect("admin.asp") End If %> Is this where i should put your code? because in my website it is...
  18. testare

    Clear querystring in browser

    <form action="admin.asp?action=login" method="Post"> <input class="FormPassword" type="password" name="password" value="demo"> <input type="submit" value="Logga in"><br> </form> <% If Request.QueryString("action") = "login" Then Response.Write("Just testing") End If...
  19. testare

    Clear querystring in browser

    the example code that i have at my first post for example If i press the submit button, then the address on my webbrowser would be admin.asp?action=login I would like to that when i press the submit button, that after it has gone in to the querystring action=login. clear the address in the...
  20. testare

    Clear querystring in browser

    i tried typing Response.Redirect("admin.asp") after the end if and it seems that it keep redirecting to it self, like an infinite loop. What should i type DNG?

Part and Inventory Search

Back
Top