Click here to Skip to main content
15,893,190 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Need HRMS Application Pin
naveen.prasad1523-Nov-17 7:18
naveen.prasad1523-Nov-17 7:18 
GeneralRe: Need HRMS Application Pin
geeta goel4-Nov-17 22:53
geeta goel4-Nov-17 22:53 
GeneralRe: Need HRMS Application Pin
naveen.prasad1525-Nov-17 19:24
naveen.prasad1525-Nov-17 19:24 
GeneralRe: Need HRMS Application Pin
geeta goel6-Nov-17 6:36
geeta goel6-Nov-17 6:36 
AnswerRe: Need HRMS Application Pin
Richard MacCutchan8-May-17 8:53
mveRichard MacCutchan8-May-17 8:53 
AnswerRe: Need HRMS Application Pin
David Mujica8-May-17 9:19
David Mujica8-May-17 9:19 
QuestionProblem converting itextsharp from htmlWorker to xmlWorker Pin
samflex6-May-17 12:33
samflex6-May-17 12:33 
AnswerRe: Problem converting itextsharp from htmlWorker to xmlWorker Pin
Richard Deeming8-May-17 2:06
mveRichard Deeming8-May-17 2:06 
samflex wrote:
smtp.EnableSsl = False

That looks wrong - GMail requires SSL/TLS:
Use SMTP settings to send mail from a printer, scanner, or app - G Suite Administrator Help[^]

Rather than hard-coding the SMTP details, it would probably be better to store then in your application's configuration file:
<mailSettings> Element (Network Settings)[^]
<smtp> Element (Network Settings)[^]
<network> Element (Network Settings)[^]
<configuration>  
  <system.net>  
    <mailSettings>  
      <smtp deliveryMethod="network">  
        <network  
          host="smtp.gmail.com"  
          port="587"
          enableSsl="true"
          defaultCredentials="false"  
          userName="myemail@gmail.com"
          password="mypassword"
        />  
      </smtp>  
    </mailSettings>  
  </system.net>  
</configuration>  

With that in place, you won't need to configure your SmtpClient instance:
Dim smtp As New SmtpClient()
smtp.Send(mm)




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: Problem converting itextsharp from htmlWorker to xmlWorker Pin
samflex9-May-17 7:10
samflex9-May-17 7:10 
GeneralRe: Problem converting itextsharp from htmlWorker to xmlWorker Pin
Richard Deeming10-May-17 0:38
mveRichard Deeming10-May-17 0:38 
GeneralRe: Problem converting itextsharp from htmlWorker to xmlWorker Pin
samflex12-May-17 9:26
samflex12-May-17 9:26 
GeneralRe: Problem converting itextsharp from htmlWorker to xmlWorker Pin
samflex12-May-17 9:02
samflex12-May-17 9:02 
GeneralRe: Problem converting itextsharp from htmlWorker to xmlWorker Pin
Richard Deeming12-May-17 9:15
mveRichard Deeming12-May-17 9:15 
QuestionText in a Div is pushing icon to the next line. How do I stop this? Pin
McTartan3-May-17 11:53
professionalMcTartan3-May-17 11:53 
AnswerRe: Text in a Div is pushing icon to the next line. How do I stop this? Pin
John C Rayan11-May-17 5:47
professionalJohn C Rayan11-May-17 5:47 
GeneralRe: Text in a Div is pushing icon to the next line. How do I stop this? Pin
McTartan12-May-17 9:40
professionalMcTartan12-May-17 9:40 
PraiseRe: Text in a Div is pushing icon to the next line. How do I stop this? Pin
John C Rayan14-May-17 22:24
professionalJohn C Rayan14-May-17 22:24 
QuestionDataGrid with CHECKBOX and RADIOBUTTON in the column. Pin
VinKot27-Apr-17 5:02
VinKot27-Apr-17 5:02 
AnswerRe: DataGrid with CHECKBOX and RADIOBUTTON in the column. Pin
Afzaal Ahmad Zeeshan27-Apr-17 5:33
professionalAfzaal Ahmad Zeeshan27-Apr-17 5:33 
AnswerRe: DataGrid with CHECKBOX and RADIOBUTTON in the column. Pin
User 418025427-Apr-17 11:14
User 418025427-Apr-17 11:14 
QuestionForce Browser to use updated pdf file instead of cache version Pin
Blikkies26-Apr-17 6:51
professionalBlikkies26-Apr-17 6:51 
AnswerRe: Force Browser to use updated pdf file instead of cache version Pin
jkirkerx26-Apr-17 9:37
professionaljkirkerx26-Apr-17 9:37 
GeneralRe: Force Browser to use updated pdf file instead of cache version Pin
Blikkies26-Apr-17 9:43
professionalBlikkies26-Apr-17 9:43 
AnswerRe: Force Browser to use updated pdf file instead of cache version Pin
ZurdoDev26-Apr-17 10:21
professionalZurdoDev26-Apr-17 10:21 
AnswerRe: Force Browser to use updated pdf file instead of cache version Pin
jkirkerx26-Apr-17 12:49
professionaljkirkerx26-Apr-17 12:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.