I have been charged with the task of Automating a report that is on a server in rackspace. I only have the following information. I do not have direct access to the server I only have the ip and the following information.
The following is the SQL the analysts run every morning. We’d like for you to create a web application in C# that will automate this process.
Create a screen where they can input their start and end dates.
Retrieve the data based on the dates provide.
Return the results.
Display the results on the screen.
There is no design/specific look & feel, just make sure the form and report displayed is user friendly.
Export report to Excel.
-------------------------------------
SQL:
SELECT [FirstName]
,[LastName]
,[Amount]
,[Fund]
,[PaymentType]
,[CCNum]
,[CCType]
,[ACHNum]
,[Frequency]
,[FrequencyDate]
,[TransDate]
,[TransID]
FROM [database].[dbo].[tblName]
where TransDate >= '07/27/2015' and TransDate < '07/28/2015'
order by TransDate
-------------------------------------
Database connection in web.cofig:
<add name="servername" providerName="System.Data.SqlClient" connectionString="server=111.111.111.111;database=databaseName;Integrated Security=FALSE;user=*******;pwd=*******;" />
If you have a specific question or problem you've encountered, please give us more details about where you're stuck.