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...
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...
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...
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
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...
should be very easy to do:
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><%=(QueryDB.Fields("Product1"))%></td>
<td><%=(QueryDB.Fields("Product2"))%></td>
</tr>
<tr>...
1.
Try to put each Response.Write(QueryDB.Fields("ProductDescription"))
into separate column of the table.
If you are using DW - repeat that row.
<tr>
<td><%=(QueryDB.Fields("ProductType"))%></td>
<td><%=(QueryDB.Fields("ProductMake"))%></td>...
<%
Do Until QueryDB.EOF
Response.Write(QueryDB.Fields.Item("ProductMake").Value)
Response.Write "<br>"
Response.Write(QueryDB.Fields.Item("ProductDescription").Value)
QueryDB.MoveNext
Loop
%>
OR better solution for 2 columns:
use rs.GetString
String =...
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...
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...
Save it as SHTML or SHTM - but why?
With asp you can use server.execute("page.asp") instead of includes (which are processed before all the code and will slow down page loading). To use conditional includes use: server.execute("page.asp") on the asp page - more flexibility.
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...
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
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)...
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...
1. I'm trying to deploy a project to a remote server.
Locally the project was named "v_66"
The folder on a server(virtual directory) where I'm deploying the project is "66"
I copied Global.aspx and Global.asax.resx
Here is the error:
Parser Error
Description: An error...
Here is my function:
Public Shared Function NullDisplay(ByVal nDate As Object)
Dim nString As String
If IsDBNull(nDate) Then
nString = ""
Else
nString = nDate.ToString
End If
Return String.Format("{0:d}"...
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...
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: "Cast from type 'DBNull' to 'String' in not valid in String.Format("INSERT INTO...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.