473,387 Members | 1,578 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,387 software developers and data experts.

Reporting ASP

Hi,

What is the best option for report in classical asp.
Please advise

Dec 14 '05 #1
12 1614
Well M$ seem to favour Crystal Reports but there are many out there. Have
you heard of Google?
"IMRAN SAROIA" <im*************@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi,

What is the best option for report in classical asp.
Please advise

Dec 15 '05 #2
personally I make any reports from scratch
SQL Statements, loops, calculations, and HTML etc etc

sometimes other things...

I like the control I have and I find it pretty easy to get down and dirty
and do work like that... but yes some people are into crystal reports and it
is quite good
"IMRAN SAROIA" <im*************@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi,

What is the best option for report in classical asp.
Please advise

Dec 15 '05 #3
>>Have you heard of Google?

Have you heard of the "S" that is on your keyboard?

Bob Lehmann

"David Morgan" <mi*************************@davidmorgan.me.uk> wrote in
message news:OE**************@TK2MSFTNGP12.phx.gbl...
Well M$ seem to favour Crystal Reports but there are many out there. Have
you heard of Google?
"IMRAN SAROIA" <im*************@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi,

What is the best option for report in classical asp.
Please advise


Dec 15 '05 #4
Thanks Larry

"Larry Randolf" <la*********@hotmail.com> wrote in message
news:Oh**************@TK2MSFTNGP10.phx.gbl...
personally I make any reports from scratch
SQL Statements, loops, calculations, and HTML etc etc

sometimes other things...

I like the control I have and I find it pretty easy to get down and dirty
and do work like that... but yes some people are into crystal reports and it is quite good
"IMRAN SAROIA" <im*************@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi,

What is the best option for report in classical asp.
Please advise


Dec 15 '05 #5
On Wed, 14 Dec 2005 19:07:22 -0700, "Bob Lehmann" <no****@dontbotherme.zzz>
wrote:
in <#U**************@TK2MSFTNGP12.phx.gbl>
Have you heard of Google?


Have you heard of the "S" that is on your keyboard?


Is this some sort of microsoft religion?

---
Stefan Berglund
Dec 16 '05 #6
> Is this some sort of microsoft religion?
Why would you say that, $tefan?

Bob Lehmann

"Stefan Berglund" <ke****@in.thegroups> wrote in message
news:sf********************************@4ax.com...
On Wed, 14 Dec 2005 19:07:22 -0700, "Bob Lehmann" <no****@dontbotherme.zzz> wrote:
in <#U**************@TK2MSFTNGP12.phx.gbl>
Have you heard of Google?


Have you heard of the "S" that is on your keyboard?


Is this some sort of microsoft religion?

---
Stefan Berglund

Dec 16 '05 #7
On Thu, 15 Dec 2005 17:07:44 -0700, "Bob Lehmann" <no****@dontbotherme.zzz>
wrote:
in <e5**************@tk2msftngp13.phx.gbl>
Is this some sort of microsoft religion?

Why would you say that, $tefan?


Thank you for confirming my suspicions.

---
Stefan Berglund
Dec 16 '05 #8
You're welcome. Even the paranoid, such as yourself, $tefan, need
affirmation now and then.

But, I still would like to know how someone commenting on the childish use
of a "$", instead of a "S", could be construed as religious, $tefan.

Bob Lehmann

"Stefan Berglund" <ke****@in.thegroups> wrote in message
news:ck********************************@4ax.com...
On Thu, 15 Dec 2005 17:07:44 -0700, "Bob Lehmann" <no****@dontbotherme.zzz> wrote:
in <e5**************@tk2msftngp13.phx.gbl>
Is this some sort of microsoft religion?

Why would you say that, $tefan?


Thank you for confirming my suspicions.

---
Stefan Berglund

Dec 16 '05 #9
On Thu, 15 Dec 2005 19:15:26 -0700, "Bob Lehmann" <no****@dontbotherme.zzz>
wrote:
in <eW**************@TK2MSFTNGP12.phx.gbl>
You're welcome. Even the paranoid, such as yourself, $tefan, need
affirmation now and then.

But, I still would like to know how someone commenting on the childish use
of a "$", instead of a "S", could be construed as religious, $tefan.

Bob Lehmann


Clearly our opinions of what constitute childish behavior differ.

---
Stefan Berglund
Dec 16 '05 #10
> But, I still would like to know how someone commenting on the childish use
of a "$", instead of a "S",


I think the "have you ever heard of google" remark was even more childish.
Dec 16 '05 #11

IMRAN SAROIA wrote:
Hi,

What is the best option for report in classical asp.
Please advise


For a cheap solution, create everything for Excel. See

http://msdn.microsoft.com/library/de...ml/ofxml2k.asp

My just adding the following to your HTML

Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition","filename=myreport.xls"

Your HTML table will automatically load into Excel. Because of this,
you can use any of the Excel formulas in each cell, so if you want to
do totals, all you need to keep track of is the column and row that
you're on to properly write a formula.

Another cool feature is the "outline" feature in Excel. By just adding
a simple style to your <TR> tag, Excel will group those cells together.

Dec 16 '05 #12
Oh ! Thanks, I never thought about this solution before.
"Larry Bud" <la**********@yahoo.com> wrote in message
news:11**********************@g14g2000cwa.googlegr oups.com...

IMRAN SAROIA wrote:
Hi,

What is the best option for report in classical asp.
Please advise
For a cheap solution, create everything for Excel. See

http://msdn.microsoft.com/library/de...us/dnoffxml/ht
ml/ofxml2k.asp
My just adding the following to your HTML

Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition","filename=myreport.xls"

Your HTML table will automatically load into Excel. Because of this,
you can use any of the Excel formulas in each cell, so if you want to
do totals, all you need to keep track of is the column and row that
you're on to properly write a formula.

Another cool feature is the "outline" feature in Excel. By just adding
a simple style to your <TR> tag, Excel will group those cells together.

Dec 20 '05 #13

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

Similar topics

3
by: Jonathan | last post by:
We have a production database, but due to the crippling load of some reporting tools, we are looking to have a separate reporting database. Due to it's nature, the reporting database doesn't need...
3
by: Mohammad S Khan | last post by:
I am currently doing some research on reporting features provided / compatible with dotnet features. Our current application has excel reprots that are emailed both with an without scheduling...
3
by: jez123456 | last post by:
Hi My users, use ms access for querying and reporting on a backend database, however they need to replace ms access with a new reporting tool. I’m thinking of developing my own reporting...
3
by: Paul Say | last post by:
I have a asp.net application that will need to create a document/report from data in a database. The user will fill out a form supplying various criteria for parameters. I would like the...
8
by: Woody Splawn | last post by:
I am asking this question here because I asked this question in the Reporting Services Newsgroup and did not get an answer. Does anyone know if Reporting Services is intended to work in a...
5
by: John | last post by:
Hi How do .net reporting tools (including in vs2005) compare to reporting in ms access? I am moving over from access and hoping that all my reporting needs will be fulfilled. Thanks Regards
102
by: Xah Lee | last post by:
i had the pleasure to read the PHP's manual today. http://www.php.net/manual/en/ although Pretty Home Page is another criminal hack of the unix lineage, but if we are here to judge the quality...
1
by: rmk | last post by:
How can I get the 2000 and 2005 versions of SQL Server Reporting Services both working on my development laptop ????? I have ASP.NET 1.1 and 2.0 installed on my laptop. I have Visual Studio...
0
by: YellowFin Announcements | last post by:
Whitepaper: "Yellowfin Reporting" enables Embedded Business Intelligence -------------------------------------------------------------------------------- Embedded reports are a standard...
0
by: JTP PR | last post by:
Business Intelligence software company, Yellowfin today announced its successful foray into the Asia Pacific telecommunications sector through its expanding partner network. Two organisations,...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
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,...
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...

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.