Click here to Skip to main content
15,884,177 members
Articles / Web Development / ASP.NET

A reporting service using SOAP calls passing XML to a Data Extension

Rate me:
Please Sign up or sign in to vote.
4.00/5 (5 votes)
19 Oct 2005CPOL8 min read 85.4K   406   26  
Demostrates how to render a report by passing XML to a data extension via SOAP calls.
<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="RSTestApp.WebForm1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
	<HEAD>
		<title>WebForm1</title>
		<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
		<meta content="C#" name="CODE_LANGUAGE">
		<meta content="JavaScript" name="vs_defaultClientScript">
		<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
	</HEAD>
	<body MS_POSITIONING="GridLayout">
		<form id="Form1" method="post" runat="server">
			<asp:Panel id="Panel1" runat="server">
				<table cellSpacing="0" cellPadding="4" border="1">
					<tr>
						<td colspan="2"><h1>Account List Report</h1>
						</td>
					</tr>
					<tr bgcolor="silver" align="center">
						<td colSpan="2"><b>Filters</b></td>
					</tr>
					<tr>
						<td>Region:</td>
						<td><asp:dropdownlist id="DropDownList1" runat="server" EnableViewState="True"></asp:dropdownlist></td>
					</tr>
					<tr>
						<td>City:</td>
						<td><asp:dropdownlist id="DropDownList2" runat="server" EnableViewState="True"></asp:dropdownlist></td>
					</tr>
					<tr>
						<td align="center" colspan="2"><asp:button id="btnCompanySales" runat="server" Text="View Report"></asp:button></td>
					</tr>
				</table>
			</asp:Panel>
		</form>
	</body>
</HTML>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) LEN Associates Inc.
United States United States
Years of software consulting and software development using Microsoft development products such as Microsoft Content Management System, SQL Server Reporting Service, ASP.Net C# VB.Net, HTML and javascript web development, Visual Studio add-on development, C++ MFC/ATL and COM+ development, and ActiveX components.

Comments and Discussions