Advertisement
Advertisement
| 06.03.2008 at 02:34PM PDT, ID: 23454826 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: |
'Includes File
'Donations
Public Function DonationDateFilter (startDate, endDate)
action = "select * " _
& "from tblDonations " _
& "where payment_date >= + request(startDate) + " _
& " and payment_date <= + request(endDate) + " _
& " order by payment_date desc "
'response.write "{" & action & "}<br><br>"
set DonationDateFilter = Server.CreateObject("ADODB.Recordset")
DonationDateFilter.ActiveConnection = DB.Connection
DonationDateFilter.Source = action
DonationDateFilter.CursorType = 3
DonationDateFilter.CursorLocation = 2
DonationDateFilter.LockType = 3
DonationDateFilter.Open()
End Function
'ASP Page with form
<%@LANGUAGE="VBSCRIPT"%>
<% Response.Buffer = True %>
<!--#include file="Includes/LoginCheck.asp"-->
<!--#include file="../Includes/adovbs.inc"-->
<!--#include file="../Includes/Classes/DataAccess.asp"-->
<!--#include file="../Includes/Classes/Functions.inc"-->
<!--#include file="../Includes/Classes/Donations.inc"-->
<%
Set oFun = new Functions
Set oDonation = new Donations
Set rsDonations = oDonation.donationDateFilter(startDate, endDate)
Set rsTotals = oDonation.donationDateFilterSum(startDate, endDate)
' Definition of Page Level Values
Section = "Donations"
PageTitle = "Donation Reporting"
%>
<!--#include file="includes/PageTop.asp"-->
<!--body row-start-->
<tr align="left" valign="top">
<td align="left" valign="top" class="BodyType">
<form name="Main" action="DonationDateFilter.asp" method="post">
<table align="left" border=0 width=560 cellpadding=0 cellspacing=0>
<tr align="left" valign="top">
<td align="left" valign="top" class="BodyType">
This page allows you to filter donation by date range.
</td>
</tr>
<!--spacer row-start-->
<tr align="left" valign="top">
<td align="left" valign="top">
<img src="images/trans1x1.gif" width=4 height=20 align="left" border=0 vspace=0 hspace=0>
</td>
</tr>
<!--spacer row-end-->
<!--listing row-start-->
<tr align="left" valign="top">
<td align="left" valign="top">
<table align="left" border=0 width=560 cellpadding=7 cellspacing=0>
<tr align="left" valign="top">
<td align="left" valign="middle" class="TableSubHeader">
Donations by Date <% = Request("startDate") %> ­ <% = Request("endDate") %>
</td>
<td align="right" valign="bottom" class="TableSubHeader" colspan="6">
<input name="startDate" class="FormInput">
<input name="endDate" class="FormInput">
<input type="submit" value="Filter" class="FormSubmit">
</td>
</tr>
<tr align="left" valign="top">
<td align="left" valign="top" class="FormTitle" nowrap>
Name:
</td>
<td align="left" valign="top" class="FormTitle" nowrap>
Email:
</td>
<td align="left" valign="top" class="FormTitle" nowrap>
Date Received:
</td>
<td align="left" valign="top" class="FormTitle" nowrap>
Gross Amount:
</td>
<td align="left" valign="top" class="FormTitle" nowrap>
PayPal Fee:
</td>
<td align="left" valign="top" class="FormTitle" nowrap>
Net Total:
</td>
</tr>
<%
while not rsDonations.EOF
%>
<tr align="left" valign="top">
<td align="left" valign="top" class="TableBody">
<a href="DonationDetails.asp?recordnum=<%= rsDonations("recordnum") %>"><%= rsDonations("cust_firstName") %> <%= rsDonations("cust_lastName") %> </a>
</td>
<td align="left" valign="top" class="TableBody">
<a href="mailto:<%= rsDonations("payer_email") %>"><%= rsDonations("payer_email") %></a>
</td>
<td align="left" valign="top" class="TableBody">
<%= rsDonations("payment_date") %>
</td>
<td align="left" valign="top" class="TableBody">
<%= rsDonations("mc_gross") %>
</td>
<td align="left" valign="top" class="TableBody">
<%= rsDonations("mc_fee") %>
</td>
<td align="left" valign="top" class="TableBody">
<%= rsDonations("net_donation") %>
</td>
</tr>
<%
rsDonations.MoveNext
wend
rsDonations.Close
Set rsDonations = nothing
%>
<tr align="left" valign="top">
<td colspan="3" align="left" valign="top" class="TableBody"><div align="right" style="font-weight: bold">Total</div></td>
<td align="left" valign="top" class="TableBody"><div align="right"><b><%= rsTotals("Gross") %></b></div></td>
<td align="left" valign="top" class="TableBody"><div align="right"><b><%= rsTotals("Fees") %></b></div></td>
<td align="left" valign="top" class="TableBody"><div align="right"><b><%= rsTotals("Net") %></b></div></td>
</tr>
</table>
</td>
</tr>
<!--listing row-end-->
</td>
</tr>
</form>
</table>
</table>
<!--MAIN BODY TABLE - END-->
</td>
</tr>
<!--body row-end-->
<!--#include file="includes/PageBottom.asp"-->
|