473,910 Members | 4,240 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP input and EXCEL

Hi;
I am waaayyy new at ASP so I am hopping someone can help me. I wrote
an ASP that accepts input from a user. I need the input saved in
different cells in an excel sheet. Everytime someone hits Submit, it
should go to a new row.
The code below shows how I want the form set up. I have no clude on
how to get the input and save it on a server's D:\Drive. ANy help is
greatly appreciated!!!!
<FORM NAME="ServerReq uest.asp" ACTION="ServerR equest.asp"
METHOD="POST" >
<TABLE>
<TR>

<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>1. Please Enter your
Name: </SPAN></TD></b>
<TD><B><B>
<input type="text" name="Responden t">
</B></B></TD>
</TR>
<TR>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>2. What Project is
this for?:</SPAN></TD></b>
<TD><B>
<input type="text" name="BusinessU nitSponser">
</B></TD>

</TABLE>
<TABLE>
<tr>
<TR>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>3. Please enter the
remote access applications needed for this VM Guest Servers:</SPAN></
TD></b>
<TD><B>
<BR>
<FORM NAME="multisele ctform" METHOD="post" ACTION="multise lect.asp">
<SELECT NAME="RAccess" MULTIPLE SIZE="3">
<OPTION VALUE="RDP">RDP </OPTION>
<OPTION VALUE="Timbuktu ">Timbuktu</OPTION>
<OPTION VALUE="Console" >Console</OPTION>
</SELECT>
<br>
</Table>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>4. Please select the Operating System
for this VM Guest Servers:</SPAN></TD></b>
<TD><B>
<BR>

<form action="">
<select name="OS">
<option value="Deafult" >Select One</option>
<option value="XP">Wind ows XP Professional</option>

<option value="win2k3"> Windows 2003 Standard</option>
<option value="win2k3we b">Windows 2003 Web Server</option>
</select>
</form>
</TD></B>
</tr>
</tbody>
</TABLE>
<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>5. Please enter the amount of RAM is
required for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TD><B><B>
<input type="text" name="RAM">
</B></B></TD>
</TD></B>
</tr>
</tbody>
</TABLE>
<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>6. Please enter the amount of HardDisk
is required for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TD><B><B>
<input type="text" name="RAM">
</B></B></TD>
</TD></B>
</tr>
</tbody>
</TABLE>
</TABLE>
<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>7. Please enter the permissions that
is required for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TR align=left>
<TD>&nbsp;</TD>
<TD colSpan=7>
<TEXTAREA name=permission s rows=10 cols=50></
TEXTAREA>
</TD>
</TR>
</TABLE>

<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>8. Please select the enviornment for
this VM Guest Servers:</SPAN></TD></b>
<TD><B>
<BR>

<form action="">
<select name="Enviorn">
<option value="Default" >Select One</option>
<option value="POC">POC </option>
<option value="TEST">TE ST (QA)</option>
<option value="DEV">DEV ELOPMENT</option>
<option value="STG">STA GING</option>

</select>
</form>
</TD></B>
</tr>
</tbody>
</TABLE>
<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>9. Please enter the Application/
Service Name that is required for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TR align=left>
<TD>&nbsp;</TD>
<TD colSpan=7>
<TEXTAREA name=Applicatio n rows=5 cols=50></
TEXTAREA>
</TD>
</TR>
</TABLE>

<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>10. Please provide a Brief Description
for the use of the Guest Servers: </SPAN></TD></b>
<TD><B>
<TR align=left>
<TD>&nbsp;</TD>
<TD colSpan=7>
<TEXTAREA name=descriptio n rows=5 cols=50></
TEXTAREA>
</TD>
</TR>
</TABLE>
<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>11. Please provide any platform
dependencies for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TR align=left>
<TD>&nbsp;</TD>
<TD colSpan=7>
<TEXTAREA name=independen cy rows=5 cols=50></
TEXTAREA>
</TD>
</TR>
</TABLE>

<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>12. Please provide any external
dependencies for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TR align=left>
<TD>&nbsp;</TD>
<TD colSpan=7>
<TEXTAREA name=exdependen cy rows=5 cols=50></
TEXTAREA>
</TD>
</TR>
</TABLE>

<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>13. Please enter the length of time
that is required for the life of the Guest Servers: </SPAN></TD></
b><BR>
<TD><B>
<BR>
<TD><B><B>
<input type="text" name="LifeCycle ">
</B></B></TD>
</TABLE>
<BR><BR>
<input type="submit" value="Submit">
<input type="reset" value="Reset">

</FORM>

Mar 20 '07 #1
1 2490
google this for information on asp and Excel:

asp excel database
"anon1m0us" <an*******@yaho o.comwrote in message news:11******** **************@ n76g2000hsh.goo glegroups.com.. .
Hi;
I am waaayyy new at ASP so I am hopping someone can help me. I wrote
an ASP that accepts input from a user. I need the input saved in
different cells in an excel sheet. Everytime someone hits Submit, it
should go to a new row.
The code below shows how I want the form set up. I have no clude on
how to get the input and save it on a server's D:\Drive. ANy help is
greatly appreciated!!!!
<FORM NAME="ServerReq uest.asp" ACTION="ServerR equest.asp"
METHOD="POST" >
<TABLE>
<TR>

<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>1. Please Enter your
Name: </SPAN></TD></b>
<TD><B><B>
<input type="text" name="Responden t">
</B></B></TD>
</TR>
<TR>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>2. What Project is
this for?:</SPAN></TD></b>
<TD><B>
<input type="text" name="BusinessU nitSponser">
</B></TD>

</TABLE>
<TABLE>
<tr>
<TR>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>3. Please enter the
remote access applications needed for this VM Guest Servers:</SPAN></
TD></b>
<TD><B>
<BR>
<FORM NAME="multisele ctform" METHOD="post" ACTION="multise lect.asp">
<SELECT NAME="RAccess" MULTIPLE SIZE="3">
<OPTION VALUE="RDP">RDP </OPTION>
<OPTION VALUE="Timbuktu ">Timbuktu</OPTION>
<OPTION VALUE="Console" >Console</OPTION>
</SELECT>
<br>
</Table>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>4. Please select the Operating System
for this VM Guest Servers:</SPAN></TD></b>
<TD><B>
<BR>

<form action="">
<select name="OS">
<option value="Deafult" >Select One</option>
<option value="XP">Wind ows XP Professional</option>

<option value="win2k3"> Windows 2003 Standard</option>
<option value="win2k3we b">Windows 2003 Web Server</option>
</select>
</form>
</TD></B>
</tr>
</tbody>
</TABLE>
<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>5. Please enter the amount of RAM is
required for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TD><B><B>
<input type="text" name="RAM">
</B></B></TD>
</TD></B>
</tr>
</tbody>
</TABLE>
<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>6. Please enter the amount of HardDisk
is required for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TD><B><B>
<input type="text" name="RAM">
</B></B></TD>
</TD></B>
</tr>
</tbody>
</TABLE>
</TABLE>
<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>7. Please enter the permissions that
is required for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TR align=left>
<TD>&nbsp;</TD>
<TD colSpan=7>
<TEXTAREA name=permission s rows=10 cols=50></
TEXTAREA>
</TD>
</TR>
</TABLE>

<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>8. Please select the enviornment for
this VM Guest Servers:</SPAN></TD></b>
<TD><B>
<BR>

<form action="">
<select name="Enviorn">
<option value="Default" >Select One</option>
<option value="POC">POC </option>
<option value="TEST">TE ST (QA)</option>
<option value="DEV">DEV ELOPMENT</option>
<option value="STG">STA GING</option>

</select>
</form>
</TD></B>
</tr>
</tbody>
</TABLE>
<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>9. Please enter the Application/
Service Name that is required for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TR align=left>
<TD>&nbsp;</TD>
<TD colSpan=7>
<TEXTAREA name=Applicatio n rows=5 cols=50></
TEXTAREA>
</TD>
</TR>
</TABLE>

<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>10. Please provide a Brief Description
for the use of the Guest Servers: </SPAN></TD></b>
<TD><B>
<TR align=left>
<TD>&nbsp;</TD>
<TD colSpan=7>
<TEXTAREA name=descriptio n rows=5 cols=50></
TEXTAREA>
</TD>
</TR>
</TABLE>
<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>11. Please provide any platform
dependencies for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TR align=left>
<TD>&nbsp;</TD>
<TD colSpan=7>
<TEXTAREA name=independen cy rows=5 cols=50></
TEXTAREA>
</TD>
</TR>
</TABLE>

<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>12. Please provide any external
dependencies for the Guest Servers: </SPAN></TD></b>
<TD><B>
<TR align=left>
<TD>&nbsp;</TD>
<TD colSpan=7>
<TEXTAREA name=exdependen cy rows=5 cols=50></
TEXTAREA>
</TD>
</TR>
</TABLE>

<BR>
<TABLE>
<TD>&nbsp;</TD>
<TD><SPAN class=StandardT ext><b>13. Please enter the length of time
that is required for the life of the Guest Servers: </SPAN></TD></
b><BR>
<TD><B>
<BR>
<TD><B><B>
<input type="text" name="LifeCycle ">
</B></B></TD>
</TABLE>
<BR><BR>
<input type="submit" value="Submit">
<input type="reset" value="Reset">

</FORM>

Mar 20 '07 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
2528
by: Gregg | last post by:
Hello all, I have been banging my head over a problem that I am having reading a comma seperated file (CSV) that can contain from 1 to 10,000 records. My code snipit is as follows: **Start code snipit** Dim strCustFullName as string Dim strCustAddr1 as string
1
1486
by: CDARS | last post by:
Dear all, I am working on a re-development project. The objective is to replace an old "system", which make use of local MS Excel, with a new web-based application. Platform: SQL2K, Windows Server 2K3, ASP.NET My users are damn familiar with MS Excel. They can work fine with huge spreadsheet (tens of column and hundreds of row). In our prototype
14
42455
by: deko | last post by:
Is there a way to check user input for illegal characters? For example, a user enters something into a text box and clicks OK. At that point I'd like to run code such as this: illegal = Array(\, /, :, *, ?, ", <, >, |) If Me.TextBox Contains illegal Then MsgBox "You entered illegal characters. Please try again." Me.TextBox = Null
0
2843
by: Jack | last post by:
Windows 2K Pro Access/Excel 2003 Hi there, I have a large number of password protected Excel Workbooks. The files are protected by code that runs when the workbook opens. The code asks the user to key in a password into an input box, the password is compared to a a partciular cell on a hidden (xlVeryHidden) sheet and if it matches the Workbooks opens. I have not used the usual Excel password protection as I need to provide for several...
1
3150
by: Grey | last post by:
I have created a asp.net form for user to input data. After input the data, user need to click a button to export the input data to excel for data analysis with excel pivot table function. is it possible to do that?? if so, any sample for me as i am a new in designing pivot table with asp.net million thanks
3
6692
by: marknoten | last post by:
I'm quite a newbie to Visual Basic and have a problem with the Input # statement in the Visual Basic Editor from Excel. I would like to read in a tab delimeted text file selected by a user with records like this: <snip> O 21.266 17.733 28.155 N 20.649 17.703 30.320 C 20.883 17.336 31.723 </snip> I'm using the code below to read each line from the file and store them in the variables organicAtom, xCoord, yCoord and zCoord. The problem...
4
3560
by: siddarthaps | last post by:
I have a program in C++. It needs to input data from an EXCEL worksheet. How to input data stored in EXCEL into C++????
2
3908
by: eko99312 | last post by:
Dear All, As you know that input data on excel is easy than access, you can simple click the date that you prefer and input the value that you want. For example : Consider that the month that I use is November 2009 : If i use excel it will look like this, Country Day in a month 1 2 3 4 5 Australia 4 3 China 5 2
4
6861
by: nicolenwn | last post by:
Hi, I have a database in Access that currently holds the status of a salesperson and the comments of the status. The comment is an open-ended field typed in by a user. For example, if Jonny has the status of "On Leave" then the comment might say "26-11-09: Johnny is currently on medical leave and will return by 01-12-09". The comment is a compiled overtime and stored in a Text box. However, my problem is that, when i transfer this...
0
10037
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9879
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10921
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
11055
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9727
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
8099
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5939
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
6142
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4776
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.