Hi friendz, I want to make payment using credit cards by payment gateways. I have never done this before. Can you please suggest any codes/articles. Thanking You, Prabir
talk2prabir yahoo co in
Posts
-
credid card payment uusing .NET -
Suggest CMSthank you Jason Thanks, Prabir
-
Send mail in c# code(asp.net 1.1)?Hello, In my recent project I used sending mails functions. Actually 2 approaches are their. 1. In this case the mails go to bulk /spam folder 2. In 2nd approach mail will go to inbox(u r using authentication here as u have to mention uid/pwd of sending mailer) I am putting the exact codes that I have written previously. ______________________________________________________ 1st Approach
public void SendMail() { MailMessage msgMail=new MailMessage(); msgMail.To=emailTo; msgMail.From="test@test.com"; msgMail.Subject="test visitors mail"; msgMail.Body="whatever u want"; SmtpMail.SmtpServer = ""; SmtpMail.Send(msgMail); }
2nd Approach(same as 1st approach with some additional fields of authentication)public void SendMail() { MailMessage msgMail=new MailMessage(); msgMail.To=emailTo; msgMail.From="test@test.com"; msgMail.Subject="test visitors mail"; msgMail.Subject="test visitors mail"; msgMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); //basic authentication msgMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "test@test.com"); //set your username here msgMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "testpassword"); //set your password here SmtpMail.SmtpServer = "mail.test.com" ;//put ur smtpout here SmtpMail.Send(msgMail); }
Thanks, Prabir -
Suggest CMSHello, Budget is not a issue, but I need some good links 4 CMS of this type, then I need to research. Can u plz suggest. Thanks, Prabir
-
Send mail in c# code(asp.net 1.1)?Use smtpserver out blank as below: SmtpMail.SmtpServer=""; or give ur smtp server according to ur smtp out as like below : SmtpMail.SmtpServer="mail.a2z.com" prabir
-
Suggest CMSHii friends, I am intrested to have a website like http://www.tmz.com/ but in .NET. So can you plese suggest any good CMS in .NET for this. Best Wishes, prabir
-
how to set row/column's height/width in datagrid??Hi, U can convert the columns to template column in property builder then set following properties according to your requirement: Thanks, Prabir
-
Popup message in AddButton (Event Generation)Dear Sirs, Thanx for your replay,I am able to get the javascript which conforms If I want to add a record. But the problem is now, after adding I need to another pop up menu which sholud show if user want to add another record or not,basically I need to generate another event after clicking AddRecord button. Plz help me..
-
Popup message in AddButton (Event Generation)Hi Friendz, I am adding records from aspx page by clicking ADD button, I want that after adding one record, it should display a pop up menu having message if you want to add another record. How can I do this, help me plz.. Prabir
-
ASP.NET Validation controls are not working on remote serverHello Friends, I am developing an asp.net application with c#(.net framework 1.1).All my validation controls are working in my local machine, but after uploading them to remote server non of my validation contols are working in both IE & Mozilla. Plese tell me where the problem lies. Thanking You, Prabir