Owner: DOTNET TUTORIALS URL:http://dotnetfaqs-edu.blogspot.com/ Join Date: Sun, 30 Nov 2008 01:24:32 -0600 Rating:0 Site Description: ASP.NET,VB.NET,C#.NET,SQL Site statistics:Click here
add a Page Header to a Sub Report in Crystal Reports 2008-11-27 12:30:11 Work around, work around, work around !!! This is what I do when I end up creating reports that require little bit of customization and there are times when you are tired of work arounds. Come on. Give me a break. Crystal
Reports product costs so much and Business Objects folks seem to be adding patches to the old code. I would suggest them to rethink about it and rewrite the whole damn thing. O
Formatting Dates in Crystal reports 2008-11-27 12:28:21 If you have a DateTime field in Crystal
Reports, you will see Date and Time tab option on the Format Editor when you right click on the field and select Format Field menu item. From the Date and Time tab, you may select the desired format and select OK. Custom Date Format If you do not see the desired format in the available list, you can also use the Customize button that launches Custom Read more:Formatting
Working with Dynamic Parameter Fields in Crystal Report 2008-11-27 12:27:03 One of the most exciting new features on Crystal
Reports XI is dynamic parameter fields. With previous versions of Crystal Reports you could browse your data source for a list of values to select from, but this was only available at design time. When you viewed the report again, the same list of values saved with the report would be displayed. This worked out well for "static" values (like a list Read more:Dynamic
, Fields
, Parameter
Filter data to display in a crystal report viewer programmatically 2008-11-19 08:40:07 Some times we need to view, print or export filtered dataIn this article, I will show how one can do this with the simplest manner. In the current sample we assume that we will use a crystal report
model located in the C:\ directory with "C:\myCrReport.rpt" as File Name. This last one consumes data from an xml file called "C:\Resources.xml". And here is the given xml file content, just copy and pa Read more:Filter
Reporting Services 2008-11-19 08:26:34 Introduction This article is intended to illustrate and discuss the development of reports using Crystal Reports (CR) and ReportingServices
(RS). Although CR and RS are two different technologies, the produce the same results: a report. I will cover a side-by-side comparison and development of CR and RS reports. It's remarkable to say that while a Crystal Report is the most used general-purpose r
Parameter Fields in Crystal Reports 2008-11-19 08:24:01 Introduction This article is intended to illustrate how to use ParameterFields
in Crystal
Reports. Parameter fields enable the creation of reports that could be used in a variety of ways, prompting the user for all kinds of information specifically for record selection and report titles. These parameters can be used in several ways such as to display some text on the report as well as in formulas
Crystal Reports.NET 2008-11-19 08:22:53 Introduction This article is intended to illustrate how to build reports using Crystal
Report.NET. Reports are important components of enterprise applications and are mainly used to provide a descriptive and summary view of your data in order to discover information in huge volume of data and make correct decisions. This is the principles of Business Intelligence in enterprise solutions. First of
How to pass SQL query parameters to Crystal Reports using Oracle 2008-11-18 11:27:00 Introduction This article gives an idea as how to use Crystal
report in .Net Windows Application with parametrized queries and Oracle
as Database using dataset.I had searched on internet for articles related to Crystal Report with parametrized query with Oracle,but I was unable to find any good article on this topic.So I am posting my article on this topic. There are three main points in this a Read more:parameters
, SQL
Introductions to Crystal Reports in .NET 2008-11-18 11:24:37 There have been many enquiries about Crystal
Reports on the site and unfortunately there are not too many technical articles and source code samples available on Crystal Reports on C# Corner or any where else. As usual, I decided to dedicate some time to Crystal Reports and fill the Crystal Reports section of C# Corner and VB.NET Heaven sites. As a result, in next couple of weeks you will see some
ASP.NET Articles 2008-11-13 01:09:53 Building ASP.NET UserControlsURL Rewriting with IIS 7Dynamically Generate Friendly URL to Database and Web.ConfigAdding DropDownList in Datagrid Editable AreaUpload and Download File Attachment in ASP.NETRepeater within RepeaterCustom Validation for DOB Using three dropdownlistCreate an embedded image button using javascript in ASP.NETActivate User Registration by Email in ASP.NETSign-Up and Login Read more:Articles
Building ASP.NET UserControls 2008-11-11 04:48:00 Introduction If you are Classic ASP programmer or PHP programmer, you probably use SSI include files quite a lot on your web applications and you probably also know that this has worked quite reasonably well for all of you. But the major disadvantages would be maintaining the code once your web projects has grow bigger. Major problem would be to keep up with the HTML opening and closing tags. Its Read more:Building
URL Rewriting with IIS 7 2008-11-11 04:45:00 Introduction With the release of URL-rewrite module for IIS 7.0, there have been a lot of questions from ASP.NET developers about how these features become essential and when to use it. The intention of this document is to describe the this technology and to provide guidance for Web developers on how to use IIS URL rewriting. From a high level point of view, we can see that this technology allow y
Dynamically Generate Friendly URL to Database and Web.Config 2008-11-11 04:44:04 Introduction A rewrite map is an arbitrary collection of name and value pairs that can be used within rewrite rules to generate a substitution URL during rewriting. Rewrite maps are particularly useful when you have a large set of rewrite rules and all of these rules use static strings as mentioned on here. In those cases, instead of defining a large set of simple rewrite rules, you can put all th Read more:Database
, Friendly
Adding DropDownList in Datagrid Editable Area 2008-11-11 04:41:56 Introduction More and more developers are finding out just how useful DataGrids are, but there is so much involved in this unique and powerful tool, that hardly anybody knows exactly what it's capable of. For instance, most people know that you can edit items in-place with a DataGrid, but few know that you can select the type of control that you want to use for the editing. Instead of using the de
Simple Method to Upload and Download File Attachment in ASP.NET 2008-11-11 04:41:15 Introduction File upload and download are a simple tasks in ASP.NET using the extensive .NET Framework class library. File upload in ASP.NET is as easy as retrieving an HTML form value. File download is even easier in ASP.NET with the new WriteFile method in the Request object.
Main Sending a file to the browser can be achieved using a single line of code. Many Web programmers still wonder how Read more:Attachment
, Download
, Simple
, Upload
Repeater within Repeater 2008-11-11 04:39:14 Download NestedRepeater.zip Introduction This article is usefull to show hierarchical data using repeater control. Description Basically this project shows how to embed one repeater into another repeater.A parent repeater is used to display the main headings and child repeater populates the data according to headings. An xml file is used as datasource to display data. XML File Test 1 Test 2 Read more:within
Custom Validation for DOB Using three dropdownlist 2008-11-11 04:38:03 Introduction Sometimes users face problem for DOB Validation
so this article is exactly usefull for validate Date of Birth having three dropdownlist control. Main A In this project two xml files named DD.xml and MM.xml are used as a datasources to bind Days(DD) and Months(MM) in dropdwnlist control.Years(YYYY) are also bind in dropdwnlist via code and starts from 1950 To Current Year.But user can
create an embedded image button using javascript in ASP.NET 2008-11-11 04:36:55 Introduction JavaScript is a scripting language most often used for client-side web development. It is a dynamic, weakly typed, prototype-based language with first-class functions. Although best known for its use in websites (as client-side JavaScript), JavaScript is also used to enable scripting access to objects embedded
in other applications. ASP.NET provides a new paradigm for developing Web Read more:button
, create
Activate User Registration by Email in ASP.NET 2008-11-11 04:35:12 Introduction Many of you have gone to websites where you needed to create a 'membership' form, for future logging in, which in turn sent an email to you, with a link back to the site, which 'activated' your account/membership for that website. This tutorial will attempt to lay the groundwork for the basics of that particular scenario. Main First off - there needs to be a database with a table tha Read more:Activate
, Email
, Registration
Designing a Membership Sign-Up and Login Page in ASP.NET 2008-11-11 04:32:51 Introduction Web site developed nowadays contains dynamic content such as news, events, newsletters, polls, forum posts, and more. It is a content based site, where parts of the site can be easily changed or updated by privileged users. Any content based site that wants to be successful must build a great community of users. If you have a lot of loyal users, you can be sure that the site will incr Read more:Designing
, Login
, Membership
Simple asp2 feedback form 2008-11-11 04:31:52 Introduction Hi everyone, im not a professional developer by far.... but for many years when I began I struggled to find good tutorials for me as a beginner. All were alot more advanced & refered to items & means I had NO idea of at all which then made trying to teach yourself impossible!!.
I wanted Just simple straight to the point and the type that explained JUST what i needed to know t Read more:Simple
View State in ASP.NET and understand how it works 2008-11-11 04:27:51 Introduction In this article, I would explain about View State
in ASP.NET, What is it and how it works.Have you ever wondered why coding in ASP.NET is so much fun, easy, and less coding time compared to Classic ASP or any other languages such as PHP, JSP ?. One of the reason behind this was ViewState. Every Control in ASP.NET comes with ViewState enabled by default and with the power of ViewState,
Understanding Session Object in ASP.NET 2.0 2008-11-11 04:27:24 Introduction In this article, I would like to share and explain about Session objects in ASP.NET 2.0. How it is used and what new features has been introduced. I will also list out all the type of Session objects that you can use and the best practices for every Session objects type.
In classic ASP, the Session object was held in process (as was everything) to the IIS process and therefore any c Read more:Object
, Understanding
Basic of GDI+ and Graphics in ASP.NET 2008-11-11 04:26:15 Introduction In this article, I will explain about GDI+ in .NET Framework. If you haven't heard about GDI+, then GDI+ is a set of classes in .NET framework that deal with graphics. You can use GDI+ to draw custom drawing on the screen. GDI provides a layer of abstraction, hiding the differences between different video cards.
You simply need to call the Windows API function to do the specific task Read more:Basic
, Graphics
ASP.NET HTTP Modules 2008-11-11 04:24:52 ASP.NET HTTP Modules
: HTTP Modules: HTTP Modules use to intercept HTTP requests for modifying or utilize HTTP based requests according to needs like authentication, authorization, session/state management, logging, modifying Response, URL rewriting, Error handling, Caching.... HTTP Modules are activated/called/invoked before and after HTTP Handler execution. HTTP Modules are integral part of AS