Vishal
Vishal

Reputation: 2017

Sending and receiving values between C# windows and .aspx page

For the purpose of registration for the product in C# Windows Forms, I want to pass the license key from C# windows form to .aspx Registem page. After registering successfully in.aspx register page again, I want to send back success/failure flag from .aspx page to C# windows form?

How can I achieve this?

Upvotes: 0

Views: 306

Answers (1)

Coder323
Coder323

Reputation: 580

Why don't you try having a Web service or WCF service which validates the License key from the windows form application with the Database?

Upvotes: 3

Related Questions