Posts by Caio Hyppolito • 21 points
2 posts
-
0
votes0
answers654
viewsQ: C# Failed to send emails using Smtpclient
I am getting the following error while running the system on the server with port 587: Mailbox not available Error stack: When I change the door to 465 and Smtpserver.Enablessl = true; timeout…
-
2
votes5
answers1114
viewsA: Save Combobox C# values to database instead of descriptions
You can create a class containing the text and the value and assign it to the combobox. Example: public class ComboboxItem { public string Text { get; set; } public object Value { get; set; } public…