Hi all, I need to integrate the Paypal for online credit Card processing . I dont have pervious experience of integrating paypal . can any body share the ideas Regards,
Rameez Raja
Posts
-
Credit Card Processing using Paypal -
Compare two Template Fields of GridviewHi all, May we compare the two template fields of Gridview with Compare Validator like below
/asp:TextBox>
I want to validate the Receive Item with Qty using Compare Validator that User can not insert value greater than qty in Receive Item. Any Idea Regards,
-
Gridview rendering IssueHi all i have binded data with gridview in presention point view it is working but while inserting the data to DB and iam traversing the girdview iam getting the index missing . please guide me where iam doing wrong DataTable dataTable = new DataTable(); dataTable.Columns.Add(new DataColumn("StudentID", Type.GetType("System.String"))); dataTable.Columns.Add(new DataColumn("StudentName", Type.GetType"System.String"))); dataTable.Columns.Add(new DataColumn("MajorName", Type.GetType("System.String"))); dataTable.Columns.Add(new DataColumn("StudenMarks", Type.GetType("System.Int16"))); dataTable.Rows.Add(new string[] { "1","Student1","English"}); dataTable.Rows.Add(new string[] {"2", "Student2","English"}); dataTable.Rows.Add(new string[] { "3","Student3","Hindi"}); dataTable.Rows.Add(new string[] { "4", "Student4","Hindi"}); dataTable.Rows.Add(new string[] { "5", "Student4","Hindi"}); GridView1.DataSource = dataTable; GridView1.DataBind(); AND my gridview looks like the below And on Row Data bound event i have the below code stri
-
Calculate and display a progressive balanceThanks for reply Actually i have the below Table with multiple columns
Declare @Table Table
(
EmployeeName Varchar(50),joiningDate DateTime, Amount int,Balance int
)
insert into @Table
Select Abc,07/03/2010,6000,0 UNION ALL
Select xyz, 07/03/2011,1500,0 UNION ALL
Select Rameez, 07/03/2011,2000,0 UNION All
Select Abhijit, 07/03/2011,1000,0 UNION ALLI have the above table and have to calculate the progessive Balance for each row is it possible using subquery???? Regards
-
Validating Email without the use of regular Expression ?HI all, What will be way to validate the email Address without using the regular Expression . Just give me the Idea i will do my self Regards Rameez
-
Calculate and display a progressive balanceHi all, I have table and inside table there are two columns named Amount and Balance i want to calculate the balanace as Professive like below Balance 6000 Amount Balance 1500 4500 2000 2500 1000 1500 500 1000 Initially iam getting the balance from database table than have to perform the Progressive calculation . May i have to use COALESCE function ?? Or how i can calculate the ProgressiveBalance like above any hint. Any Idea ? Best Regards Rameez
-
paypalHi, Check this out http://www.asp.net/downloads/starter-kits/paypal-ecommerce/ OR You need a paypal account and you have to sign up for a business account so you can accept credit card payments. There are some clever ways to integrate it but I have illustrated one of the most basic ways here: http://runtingsproper.blogspot.com/2009/07/simple-paypal-button.html That would get you going with a purchasable item. You will have to dig deeper if you want to add items to a cart and then purchase them all at once. There is a dedicated developer network called the PayPal Developer Network. https://www.paypal.com/developer http://developer.paypal-portal.com/pdn/ And many many tutorials out there: http://www.google.co.uk/search?q=asp.net+paypal Hope it helps Regards
-
Update Panel IssueHi all, I have the Textbox inside Update Panel like below <td colspan="4" style="border: none;"> <asp:UpdatePanel ID="upnl_PeriodYears" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:TextBox ID="txtPeriodFromDate" runat="server" Width="90px" ValidationGroup="LandAcqForm" Text='<%#(((System.Data.DataRowView)Container.DataItem).DataView.Table.Columns.Contains("DBFromDate")? Eval("DBFromDate") : "FromDate") %>'></asp:TextBox> But iam getting the below error CS1061: 'System.Web.UI.Control' does not contain a definition for 'DataItem' and no extension method 'DataItem' accepting a first argument of type 'System.Web.UI.Control' could be found (are you missing a using directive or an assembly reference?) How i assign the value to Textbox which is inside Update Panel??? Regards
-
How i get start with the Chat Application like gmail or facebook Chat Style ???HI all, Iam working on chat application Module how i develop the chat application like gmail or Facebook style???? Suggest me good articles where i can learn and will get start..... Regards
-
thread hit count and views count help is needed ????Hi all, Iam working on Forum Application and every thing is ok but iam stuck on below that how i set the thread hit counter for Total Views and Total replies of the particular thread. Any Idea how i tackle this issue. Hope Hear from you Best Regards
-
Unable To Export Sub-report Data In Excel Format????Thanks for reply, ok iam placing the sub report into list control instead of Table then it works am i right? but in sub report Data is populating inside Matrix control then is it ok ?????/? Regards
-
Unable To Export Sub-report Data In Excel Format????Hi all, I am using 'Report Viewer Control ' in my project. I am using sub-reports in many cases. Whenever I export such reports containing sub-reports to 'Excel' format which is the major client requirement in our project, the exported excel file shows 'Subreports within table/matrix cells are ignored.' Can anybody tell me the solution for this? If not possible in reporting service then is there any other way to get data in excel format? Thanks.
-
Simple Example of using Enum Type why we use them?Hi all, how we can use the enum any simple Example of using the enum? enum is data type or object? Hope hear from you Best Regards
-
How i write Java script Function for validaing inner Gridview CheckboxThanks for the reply, How i get Id of inner gridview and checkbox? in java script Best Regards
-
Share me the ideas how i apprach the belowIam really sorry for doubling of the post i dont know how i post the double enteries sorry for that iam getting applogize for it. Thanks for the response Regards
-
Share me the ideas how i apprach the belowHi all Iam stuck on the below task I have Gridview inside gridview in outer gridview i binded the categores which are almost to six and on ROw Data bount event of Outer Gridview iam binding the inner gridview with items Names related to category by passing the category Id. like Category People -- People one -- People two -- People three Category Student -- Student one -- Studnet two Now how i validate that if i checked the category People checkbox chekced then its related items will be unchecked how i make independat to each category and its items Hope i will hear good comments Share me the ideas how i approach this Best Regards Rameez
-
Iam stuck in the below task of validationHi all Iam stuck on the below task I have Gridview inside gridview in outer gridview i binded the categores which are almost to six and on ROw Data bount event of Outer Gridview iam binding the inner gridview with items Names related to category by passing the category Id. like Category People -- People one -- People two -- People three Category Student -- Student one -- Studnet two Now how i validate that if i checked the category People checkbox chekced then its related items will be unchecked how i make independat to each category and its items Hope i will hear good comments Share me the ideas how i approach this Best Regards Rameez
-
How i write Java script Function for validaing inner Gridview CheckboxThanks for reply, I Checked the link but it is related with selection of all checkboxes but i have to make validation if outer Gridview Checkbox checked then all inner Gridview Check box will be checked == false. Do me this favor how i approach this. Best Regards,
-
How i write Java script Function for validaing inner Gridview CheckboxHi all, How i write a java script function which validates if Outer Gridview Checkbox is checked then inner grdiview Checkboxes not checked if any of the inner Gridview Checkbox checked then Outer Gridview Checkbox will not Checked . Best Regards, Rameez
-
Gridview inside Gridview items to be inserted into DB TableHi all, I have Outer Gridview and Inner Gridview , Inner Gridview Contains the Checkboxes now if Outer Gridview Check box Checked then Inner Gridview Checked enables false else vice versa. Now my Probelm is that how i access the inner Gridview items and insert into database if outer Gridview checkbox not checked Share me the Ideas Best Regards, Thanks in advance