Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
i want fill my windows form textbox value to one webpage textbox. For example if i enter name,age,address,city in the windows form and clicked submit button in the windows form it would automatically fill in the certain website name,age,address,city textbox in webpage by getting their webpage textbox id.It is Possible
Posted
Comments
Sinisa Hajnal 19-Dec-14 2:26am    
Yes, it is possible. But why would you do that?
Gokul Athithan 19-Dec-14 3:27am    
for my application it has been needed
Sinisa Hajnal 19-Dec-14 5:39am    
To my knowledge it is needed because you say so. That doesn't make it right or correct. Without knowing at least general context, I cannot give any better advice. You can get better advice if you present your problem and system setup and trust the experts here to provide you with good advice without limiting them to what you think is needed.

Is this about writing to social networks from your win app?
Gokul Athithan 19-Dec-14 7:11am    
For billing software, where the shop has 7 branches they want to daily update the total sales in the common website. The Report will generate automatically in the windows form(billing Software) ,the values in generated report in textbox. When they Click Submit Button, it automatically redirect to certain website and fill the report as it is in the webpage textbox.
V. 19-Dec-14 4:36am    
Without knowing more about the logic you're trying to achieve it's hard to give you a decent answer. My guess would be to save the values in the database and retreive the data from your webpage.

By your requirement:
1st: write from your win app into the database
2nd: do whatever aggregation you need in the database (if any) via triggers, stored procedures or whatever
3rd: upon opening the web page, fill it from the database, not from the form.
4th: enjoy the separation of win forms and web as now you have the ability to provide the data regardless of data origin (maybe someone asks for old sales report, maybe you write web app enabling users to enter data via web page...

Do some preliminary work and come back if you get stuck somewhere.

If this is NOT your website (that is, not one under your control, then ask the owners how can you send the data via POST method to fill the form.

If this advice helps please take time to accept the solution. Thank you.
 
Share this answer
 
save the values in a temprory notepad file and access the same in web page to fill details
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900