473,395 Members | 1,726 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Need help with direction on ASP.NET project

Howdy,

I have alot of programming experience but do not have alot of experience
with ASP.NET
web pages. What I am tasked to do is build a web page that has alot of
marketing survey
questions. You know the usual radio controls etc. Anyway I need to dump the
results
of the answers to those questions into a spreadsheet. Conceivably it would
be nice to
have an xml sheet specify the questions and the type of question. (e.g.
whether it is Yes/No
or a list to select from or something that is free form like a date). From
an application
standpoint it would be easy for me but to do it in web page I am struggling
a little bit.

Does this seem doable from a web page? I suspect it is but how would you
(*high level*)
approach it? Design customer web server controls that are invoked from an
ASP.NET
page? How do I also throw in the angle of making it customizable with say an
XML type
page? Anyone have any thoughts regarding approaching this? Also any pointers
to some
sample programs would also be of great help as well....

-Peter
Nov 19 '05 #1
4 1034
Are you able to use a data base???

"Peter" <sp**@nospamerino.com> escreveu na mensagem
news:Yf********************@comcast.com...
Howdy,

I have alot of programming experience but do not have alot of experience
with ASP.NET
web pages. What I am tasked to do is build a web page that has alot of
marketing survey
questions. You know the usual radio controls etc. Anyway I need to dump
the results
of the answers to those questions into a spreadsheet. Conceivably it would
be nice to
have an xml sheet specify the questions and the type of question. (e.g.
whether it is Yes/No
or a list to select from or something that is free form like a date). From
an application
standpoint it would be easy for me but to do it in web page I am
struggling a little bit.

Does this seem doable from a web page? I suspect it is but how would you
(*high level*)
approach it? Design customer web server controls that are invoked from an
ASP.NET
page? How do I also throw in the angle of making it customizable with say
an XML type
page? Anyone have any thoughts regarding approaching this? Also any
pointers to some
sample programs would also be of great help as well....

-Peter

Nov 19 '05 #2
sure it's possible.
setting up a hierachy of questions, stored in XML is nothing major.
Specifying the types of questions (multi, y/n, etc) should be relatively the
same, and customizing it visually is again nothing too far out there.
Storing the answers into an XML would again be just another step. From that
XML you could write it to an <TABLE> that would easily convert to excell.
I guess I would start with the layout of the files. Think it through and
start to build a page that pulls in the file and displays the question.
I would say give it a whirl at starting and take it where you can. Then post
as you hit the individual issues....we'll help ya out.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
"Peter" <sp**@nospamerino.com> wrote in message
news:Yf********************@comcast.com...
Howdy,

I have alot of programming experience but do not have alot of experience
with ASP.NET
web pages. What I am tasked to do is build a web page that has alot of
marketing survey
questions. You know the usual radio controls etc. Anyway I need to dump
the results
of the answers to those questions into a spreadsheet. Conceivably it would
be nice to
have an xml sheet specify the questions and the type of question. (e.g.
whether it is Yes/No
or a list to select from or something that is free form like a date). From
an application
standpoint it would be easy for me but to do it in web page I am
struggling a little bit.

Does this seem doable from a web page? I suspect it is but how would you
(*high level*)
approach it? Design customer web server controls that are invoked from an
ASP.NET
page? How do I also throw in the angle of making it customizable with say
an XML type
page? Anyone have any thoughts regarding approaching this? Also any
pointers to some
sample programs would also be of great help as well....

-Peter

Nov 19 '05 #3
Hi, Peter.

Download the Spreadsheet Converter, test it with your
survey data, and see the kind of output it gives you.

That will give you tons of ideas for your project.

The Spreadsheet Converter can export
your made-in-Excel survey to ASP.NET.

http://www.spreadsheetconverter.com/excel-asp-net.htm

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"Peter" <sp**@nospamerino.com> wrote in message news:Yf********************@comcast.com...
Howdy,

I have alot of programming experience but do not have alot of experience with ASP.NET
web pages. What I am tasked to do is build a web page that has alot of marketing survey
questions. You know the usual radio controls etc. Anyway I need to dump the results
of the answers to those questions into a spreadsheet. Conceivably it would be nice to
have an xml sheet specify the questions and the type of question. (e.g. whether it is
Yes/No
or a list to select from or something that is free form like a date). From an
application
standpoint it would be easy for me but to do it in web page I am struggling a little
bit.

Does this seem doable from a web page? I suspect it is but how would you (*high level*)
approach it? Design customer web server controls that are invoked from an ASP.NET
page? How do I also throw in the angle of making it customizable with say an XML type
page? Anyone have any thoughts regarding approaching this? Also any pointers to some
sample programs would also be of great help as well....

-Peter

Nov 19 '05 #4
>>Are you able to use a data base???

Actually I wish. You see the data can also come in through a third party
vendor
who FTP's us the info in spreadsheet form. I have previously written another
app that
reads that spreadsheet and puts it into our database. So I am leveraging
that existing
process by making an ASP.NET page that will tabulate information sent to us
from
paper surveys that get sent snailed mailed to our marketing department and
replicate
those aforementioned spreadsheets.

So yeah, it wouldn't be my first choice but it is an existing process and
key words here
are "marketing department" :-)

"Peter" <sp**@nospamerino.com> wrote in message
news:Yf********************@comcast.com...
Howdy,

I have alot of programming experience but do not have alot of experience
with ASP.NET
web pages. What I am tasked to do is build a web page that has alot of
marketing survey
questions. You know the usual radio controls etc. Anyway I need to dump
the results
of the answers to those questions into a spreadsheet. Conceivably it would
be nice to
have an xml sheet specify the questions and the type of question. (e.g.
whether it is Yes/No
or a list to select from or something that is free form like a date). From
an application
standpoint it would be easy for me but to do it in web page I am
struggling a little bit.

Does this seem doable from a web page? I suspect it is but how would you
(*high level*)
approach it? Design customer web server controls that are invoked from an
ASP.NET
page? How do I also throw in the angle of making it customizable with say
an XML type
page? Anyone have any thoughts regarding approaching this? Also any
pointers to some
sample programs would also be of great help as well....

-Peter

Nov 19 '05 #5

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

Similar topics

1
by: Glen | last post by:
I need to make a project for school that intergrates Frontpage, access, word and powerpoint. I wanted to make something that would be usefull for work also. Anyways, here goes. I hope to create...
10
by: Tom | last post by:
I am looking for some ideas for how to design the layout of the form for data entry and to display the data for the following situation: There are many sales associates. A sales associate can work...
48
by: Chad Z. Hower aka Kudzu | last post by:
A few of you may recognize me from the recent posts I have made about Indy <http://www.indyproject.org/indy.html> Those of you coming to .net from the Delphi world know truly how unique and...
4
by: anonymike | last post by:
Hello, I'm working on an ASP.NET project (VS 2005) utilizing an Oracle database backend. While I understand that Gridview's are a breeze to work with using SQL Server (hundreds of sites point...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
1
by: simonalexander | last post by:
I have got a homework task to do and I have started the work but I cannot finish it.Can someone please help me finish the code. The help given is much appreciated. The actual specifications are...
7
by: Gladen Blackshield | last post by:
Hello All! Still very new to PHP and I was wondering about the easiest and simplest way to go about doing something for a project I am working on. I would simply like advice on what I'm asking...
2
by: Lauren | last post by:
I have created a com dll with vb.net. I am having trouble getting it to work on some of the development machines. It always works in the complied project but on some of the development machines...
6
by: pereges | last post by:
Ok, I have some problem with arrays which i want to use for storing rays in my ray tracing project. please have a little patience to read. I need to fire rays from a a rectangular plane. The rays...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.