Hello,
I am having diffuculty setting up a web site in IIS 6.0 on Microsoft Windows Server 2003 R2 Standard Edition, Service Pack 1.
I opened IIS and added a new application pool.
I then added a new web site.
I added a new virtual directory under the new web site added from above.
I set web...
Hello,
Is there a way to have a column in a table a fixed length?
Ex - say I want the first column to be 400 and the next column to be 200.
<table border="0" width="600">
<tr>
<td><u><b><font face="Tahoma" size="2">Line Item</font></b></u></td>
<td><u><b><font face="Tahoma"...
Hi! I have the following function that takes the fields and does calculations with them to get a total. The problem is that someone put in a word instead of a number and the program errored out. I would like to check for a number. If it is a number - do calculations, if not a number - put a...
Hi!
I have a quantity field where the user types in how many they purchased of an item.
Well someone yesterday actually wrote - "Five" and not "5".
So now I need to check to make sure it is a number.
Is there a function that allows this?
THANKS!
The field is -
IF...
Hi,
I am downloading a report automatically into excel.
There is one field that is causing me a problem.
It is a text field in the database but some of the values start with a 0 (zero). When it is inserted into excel the 0 (zero) dissapears. I can't find a FormatText function. Is there a...
Hi!
I have a function that automatically updates a field on my form after doing calculations. I only want two numbers after the decimal place.
<!--FUNCTION TO CALCULATE THE TOTAL AMOUNT-->
<script language="javascript">
function calctotal()
{
lvShip =...
Hi! I have the following table on a form that displays multiple rows -
<%Cmd = "SELECT * FROM Tbl_Orders WHERE OrderCcUser = '"&Session("UserSessionUserId")&"' AND OrderMarkedAsSubmit = 'No'"
SET RsReq = CreditCardDb.execute(Cmd)%>
<td align="left"><font face="Tahoma"...
Hi! I have the following code on one form -
<script type="text/Javascript">
window.opener.document.getElementById('OrderFile1').value = document.frmSend.attach1.value;
</script>
The result is that the OrderFile1 value stays blank and there is no value in it.
The value i am trying to pass is...
I have the following code that will set the value on the form to another web page text box that is open.
<!--ASSIGN UPLOAD VALUE TO THE PARENT FORM-->
<script type="text/Javascript">
VAR lvvar = ????????????????????????????????;
window.opener.document.getElementById('OrderFile1').value =...
Hi! I have the following code that will reload the parent web page and close the child web page -
<script type="text/Javascript">
opener.location.reload();
window.close("http://172.26.104.141/CreditCard/UploadFiles.asp");
</script>
This code is in the child web page and works fine. The...
I have the following code that creates a link to another web page -
<a href="UploadFiles.asp" target="_blank"><font face="Tahoma" size="2">Upload File</a></font>
Is there a way to add the height and width of the new web page when it opens? Or do i have to set the height and width variables...
<!--NOW OPEN UP THE PDF FILE WEB PAGE AUTOMATICALLY-->
<script type="text/Javascript">window.open("http://172.26.104.141/CreditCard/PdfOrdersNew.Asp", null);
window.location = "http://172.26.104.141/CreditCard/MainMenu.asp";
</script>
How do I add -
window...
Hi! I Have The Following Filed In My Form -
<td align="center"><input type="file" name="OrderFile3" size="40" value="<%=Request.Form("OrderFile3")%>"></td>
I know that when you have a file type you need - ENCTYPE="multipart/form-data" in the form heading.
The problem is that when i put that...
I have the following code -
<!--NOW OPEN UP THE PDF FILE WEB PAGE AUTOMATICALLY-->
<script type="text/Javascript">
window.open("http://172.26.104.141/CreditCard/PdfOrdersNew.Asp", null);
</script>
<!--REDIRECT THE USER TO THE MAIN MENU-->
<%response.redirect("MainMenu.asp")%>
The problem...
I have the following code that closes a window. -
<td align="right"><a href="javascript:void(0)" onclick="window.opener=self;window.close();"><font face="Tahoma" color="#000080" size="4"><b>Close</b></font></a></td>
The problem is that I want to add -
Session("CanEdit") = "False" so it...
I have the following code that uses javascript to close a window. -
<td align="right"><a href="javascript:void(0)" onclick="window.opener=self;window.close();"><font face="Tahoma" color="#000080" size="4"><b>Close</b></font></a></td>
The problem is that I want to add -
Session("CanEdit") =...
I was wondering if there is code that will automatically open up another web page?
When the user selects "submit" on the form, the information they entered in gets imported into the SQL server table (this is written in asp). After this is done, I would like another web page to automatically...
Hi!
I have a form, when the user selects "submit" i would like to have another web page open automatically and pass ome variables to it.
The code i have below is to open another web page and pass variables using a LINK. However, i do not know hgow to modify it so it opens automatically.
<a...
I have a javascript function that retrieves number values, add them together and then assigns that total to a text field on a form.
The problem i am having is that if the one of the number fields where the function is retreiving data is blank, then NaN appears in the text field.
Is there a way...
I have a file field that the user selects a file that I will upload to the server,
After the user selects a file from their pc, IF the page gets refreshed (which it might- a couple things in the web page refreshed the form to perform calculations), how do i keep the value the user entered...
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.