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 Chriss Miller 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. 777axa

    Insert SQL problem (Jamie)

    I don't know what happend to previous thred. Below is what worked for me. Note: I think that the problem was that you named your fields with reserved words like time or date - use prefixes - showTime, showDate In your case [ ] around the names are needed...
  2. 777axa

    Newbie questions on database-driven website...

    If public server "H" called "Web Server" belongs to a web hosting company they may have some ASP uploading components already installed - these are easy to use. If it is your company's server - check for installed components first and then go to Dreamweaver exchange site (if...
  3. 777axa

    Using Horizontal Looper to display SQL data - Missing Info??

    are you 100% sure that this ProductCat has more then 4 items? Change you Select statement to display all recs and see...
  4. 777axa

    Epicor evaluation

    Hi, does anybody know if Epicor provides evaluation version of it's ERP software? Our company has requested evaluation package 2 weeks ago. So far nothing. No calls or CD. They've sent an email though (but no useful information). Is their support this slow too? in the meantime can anybody give...
  5. 777axa

    submit to two forms simultaneously

    I also have this problem - I need to submit 4 forms to 4 different servers. As I understand to submit a form you need to click on Submit button. In case of redirection what would be the way of triggering the submittion of other forms? Thanks
  6. 777axa

    Need recordset to move to next line after each record

    find MW extension called Horizontal Looper 2 (as I remember). it will do the job. Also I'd recommend buying a good book on ASP (I have several and they help me every day) And the last thing - go & try different ASP software. DM writes ASP code in not the most efficient way and sometimes it is...
  7. 777axa

    Need recordset to move to next line after each record

    should be very easy to do: <table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;> <tr> <td><%=(QueryDB.Fields(&quot;Product1&quot;))%></td> <td><%=(QueryDB.Fields(&quot;Product2&quot;))%></td> </tr> <tr>...
  8. 777axa

    Need recordset to move to next line after each record

    1. Try to put each Response.Write(QueryDB.Fields(&quot;ProductDescription&quot;)) into separate column of the table. If you are using DW - repeat that row. <tr> <td><%=(QueryDB.Fields(&quot;ProductType&quot;))%></td> <td><%=(QueryDB.Fields(&quot;ProductMake&quot;))%></td>...
  9. 777axa

    Need recordset to move to next line after each record

    <% Do Until QueryDB.EOF Response.Write(QueryDB.Fields.Item(&quot;ProductMake&quot;).Value) Response.Write &quot;<br>&quot; Response.Write(QueryDB.Fields.Item(&quot;ProductDescription&quot;).Value) QueryDB.MoveNext Loop %> OR better solution for 2 columns: use rs.GetString String =...
  10. 777axa

    Good &amp; bad sides of SAP

    Sorry prateekraj & abap1 for the delay , I didn’t expect anybody asking me about ERP since I’m new to this SAP forum. I don’t think that it would be ethical to give out the name of this new system here. I’ll check if they allow posting of email addresses. Regarding “no programming” ERP thingy...
  11. 777axa

    CSS file with cellspacing property for table ?

    Thank you Sheltered, td {padding-left:*px; padding-right:*px; padding-top:*px; padding-bottom:*px;} - doesn't work for me for some reason I'm trying to create a stand-alone CSS file for managing all the tables in the solution I generate in CodeCharge ASP project. All the tables have default...
  12. 777axa

    Using an Include file with html page

    Save it as SHTML or SHTM - but why? With asp you can use server.execute(&quot;page.asp&quot;) instead of includes (which are processed before all the code and will slow down page loading). To use conditional includes use: server.execute(&quot;page.asp&quot;) on the asp page - more flexibility.
  13. 777axa

    Grabbing XML and saving it with FSO ?

    I'm using ASP but trying to display data from an XML stream produced by PHP file. If I'm using my PC for displaying data it works fine. If I upload files with javaScript or data Island to a remote server they stop working. XMP output is valid and well formed (I check it). The only way to display...
  14. 777axa

    CSS file with cellspacing property for table ?

    How to create stand-alone CSS file with the properties for the table SIMILAR to cellspacing & cellpadding? Someone recommended margin:0; padding:0; but it doesn't work! I'd like to be able to control cellspacing & cellpadding for all the tables in my project from one place. Thanks
  15. 777axa

    WRITING AND READING FROM A DATABASE

    In addition to your old HTML you have to use one of the following technologies: XML - you can store your information in XML file (as your database) or in real database such as Access or Oracle PHP or ASP or JSP- server based scripting (data is stored in Access, MS SQL server, My Sql & others)...
  16. 777axa

    Help file for Delphi components

    I'm VS.NET user. I'm trying help my friend with translation into English of the manual for his software which was created with Delphi and has a number of Delphi components as well as new components. All the support materials are in foreigh language and I need to have at least an English...
  17. 777axa

    Deployment problem &amp; question

    1. I'm trying to deploy a project to a remote server. Locally the project was named &quot;v_66&quot; The folder on a server(virtual directory) where I'm deploying the project is &quot;66&quot; I copied Global.aspx and Global.asax.resx Here is the error: Parser Error Description: An error...
  18. 777axa

    Short date formatting problem

    Here is my function: Public Shared Function NullDisplay(ByVal nDate As Object) Dim nString As String If IsDBNull(nDate) Then nString = &quot;&quot; Else nString = nDate.ToString End If Return String.Format(&quot;{0:d}&quot...
  19. 777axa

    Range Validator help for date validation

    Is there a way to set the min and max values in the Range Validator Control's properties using some of the built-in date functions. I want min to be the today's date minus 50 years and max + 5 years. I've tried typing <%=DateTime.Today%> into the properties but it gives an error. Do i need to do...
  20. 777axa

    DBNull - how to insert a NULL into DB?

    I have found something on http://www.dotnetjunkies.com/howto/default.aspx?id=54 but I'm not sure how to use it - do I need a stored procedure or not? Here is what I have now: (it gives an error: &quot;Cast from type 'DBNull' to 'String' in not valid in String.Format(&quot;INSERT INTO...

Part and Inventory Search

Back
Top