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 strongm 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: *

  1. shaygan

    define CSS for xsl file in header

    i generate dynamic xsl in a servlet and because i wont to write in each table cell a <p><font size="2" face="Aial"> i will to define something like a CSS in the header : psxsl.println("<?xml version='1.0'?> <xsl:stylesheet version=\"1.0\" " +...
  2. shaygan

    what' s need to write servlet with log off

    Can tell me somebody what i need to write Servlet application which make it possible To login and logout on Servlet? (which Technology, recommended links etc) Thanks at advance
  3. shaygan

    get a html file after clicking the button

    i call my servlets from this directory: servlets/mypTomcatProject/myservletNumberOne servlets/mypTomcatProject/myservletNumberTwo ...... Now i generate a Submit Button and i will that the user get the index.html after he Click on this Button: ..... out.println("<tr>"); out.println("<td><form...
  4. shaygan

    helpo, sql statement need

    thanks for your hints 1)this is a date/time type and i want to display 12.12.2001 12.21.22 after that i want to add all hour, minuts and secounds together. >And this ? >Response.Write FormatDateTime(rs.Fields("datecolum"), 0) this get the same result: 12.12.2001 (only date ) ??
  5. shaygan

    Which sql-statement to get the date and time ?

    thanks for all your hints! you see how confuse i have been! this is a code part: strcon = "Driver={Microsoft Access Driver (*.mdb)};Dbq= dbpath;Uid=myid;Pwd=pw" set con = CreateObject ("ADODB.connection")'// connection object set rs = CreateObject ("ADODB.recordset") con.open strcon...
  6. shaygan

    helpo, sql statement need

    I know that this forum is not a asp forum but i a'm desponded and try it with access specialists! I have an access table (make with access xp) , which has a colum name “datecolum” in the access format like this : 12.12.2001 12:21:22 (date and hour) First i read this : Sql_s= Select datacolum...
  7. shaygan

    Which sql-statement to get the date and time ?

    hi Cassidy the Result of FormatDateTime(d,0) is the same : 12.12.2001 :( ? I think this is a read pocess problem, maybe i need s special sql-Statement to read this format, because this is a strangely access format!!!!!???????????
  8. shaygan

    Qutation mark problem

    thanks a lot for your hint :)
  9. shaygan

    read from database and write data to file

    I read and type the data out from a Access database Now I will to write this data to a file Dim StringName ............ objCmd.CommandText = strQuery Set objRS = objCmd.Execute ........... //web browser output ……….. <td><%= objRS("name") %> </td> ........... With...
  10. shaygan

    Qutation mark problem

    hello, i try to write this line <?xml version=“1.0“> to a file: ............... Set objTextStream = objFs.CreateTextFile(filename, True) objTextStream.WriteLine (" <?xml version=" 1.0" “) ................ but because of qutation mark i get Error! I ‚ m thankful for a hint
  11. shaygan

    Write answer to a new side

    with side i mean a separate ( a new )html side, because of that i tryed with this Response.Write("<html><head></head><body>" & fname &"</body></html>") but it does not seem to be correct :(
  12. shaygan

    Write answer to a new side

    hey, this Script write to the same side, but i will that the answer be written in a new html side. <html> <body> <form action="demo.asp" method="get"> Your name: <input type="text" name="fname" size="20"> <input type="submit" value="Submit"> </form> <% dim fname...

Part and Inventory Search

Back
Top