Click here to Skip to main content
15,888,521 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i am creating one website in asp.net using c# .in that i m putting command window for users.give some ideas about command window
Posted
Updated 15-Sep-14 21:22pm
v2
Comments
Member 10918596 16-Sep-14 3:22am    
sry sry i asked comment box..
Kornfeld Eliyahu Peter 16-Sep-14 4:07am    
It's probably my English, but can not understand your question (can't even see a question). Please improve with more details and probably you problematic code too...

1 solution

A comments box is just a multiline textbox and a "submit" button - the code behind defines what happens to the user input from there.

There are three main things you can do with such comments:
1) Store them for later review: a text file, or database is fine (though a DB is probably better)
2) Email the comments to a suitable person or department fro review / action / response.
3) Ignore it and junk the comment.

It's up to you and how your company works and thinks which approach to take.
DB you should have no problems with.
Email isn't difficult: Sending an Email in C# with or without attachments: generic routine.[^]
Ignoring comments is trivial.
 
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