Click here to Skip to main content
15,915,600 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Question"datagrid paging" Pin
ravikiranreddydharmannagari22-Nov-06 23:48
ravikiranreddydharmannagari22-Nov-06 23:48 
AnswerRe: "datagrid paging" Pin
_mubashir23-Nov-06 0:12
_mubashir23-Nov-06 0:12 
QuestionHelp !!! Pin
sukhchain singh22-Nov-06 23:40
sukhchain singh22-Nov-06 23:40 
AnswerDouble post Pin
leckey25-Nov-06 15:41
leckey25-Nov-06 15:41 
QuestionSetting username/passwords in the web.config using forms authentication? Pin
Red_Wizard_Shot_The_Food22-Nov-06 23:34
Red_Wizard_Shot_The_Food22-Nov-06 23:34 
AnswerRe: Setting username/passwords in the web.config using forms authentication? Pin
Britney S. Morales23-Nov-06 8:21
Britney S. Morales23-Nov-06 8:21 
QuestionSend mail Pin
aasstt22-Nov-06 22:19
aasstt22-Nov-06 22:19 
AnswerRe: Send mail Pin
Steven J Jowett22-Nov-06 23:36
Steven J Jowett22-Nov-06 23:36 
Here's some vb 2005 code that works

Dim smtpMail As New System.Net.Mail.SmtpClient<br />
                Dim emlMessage As New System.Net.Mail.MailMessage()<br />
                With emlMessage<br />
                    .From = New System.Net.Mail.MailAddress(emailAddressTextBox.Text, nameTextBox.Text)<br />
                    .Subject = subjectTextBox.Text<br />
                    .Body = messageTextBox.Text<br />
                    .To.Add(emailAddressTextBox.Text) 'you can add as many email addresses as required<br />
                    .IsBodyHtml = False<br />
                End With<br />
                With smtpMail<br />
                    .Host = "smtp.domain.com"<br />
                    .DeliveryMethod = Net.Mail.SmtpDeliveryMethod.Network<br />
                    .Credentials = New System.Net.NetworkCredential("SmtpServerLogonName", "Password")<br />
                    .Send(emlMessage)<br />
                                   End With


Steve Jowett

AnswerRe: Send mail Pin
Britney S. Morales23-Nov-06 3:46
Britney S. Morales23-Nov-06 3:46 
Questionsms system Pin
jabbarsb22-Nov-06 21:39
jabbarsb22-Nov-06 21:39 
AnswerRe: sms system Pin
Coding C#22-Nov-06 23:17
Coding C#22-Nov-06 23:17 
GeneralRe: sms system Pin
jabbarsb22-Nov-06 23:31
jabbarsb22-Nov-06 23:31 
GeneralRe: sms system Pin
Coding C#23-Nov-06 19:07
Coding C#23-Nov-06 19:07 
QuestionDropdown Menu Pin
Rajiya22-Nov-06 20:13
Rajiya22-Nov-06 20:13 
AnswerRe: Dropdown Menu Pin
Imran Khan Pathan22-Nov-06 21:48
Imran Khan Pathan22-Nov-06 21:48 
GeneralRe: Dropdown Menu Pin
Rajiya23-Nov-06 0:32
Rajiya23-Nov-06 0:32 
Questionfind whether a datatable is present or not in a dataset Pin
pavansagar122-Nov-06 20:10
pavansagar122-Nov-06 20:10 
AnswerRe: find whether a datatable is present or not in a dataset Pin
Tamimi - Code22-Nov-06 20:33
Tamimi - Code22-Nov-06 20:33 
QuestionDropdownlist problem as DataGrid Control Pin
param thaker22-Nov-06 20:07
param thaker22-Nov-06 20:07 
AnswerRe: Dropdownlist problem as DataGrid Control Pin
_AK_22-Nov-06 21:02
_AK_22-Nov-06 21:02 
QuestionHow to use google earth from my web application? Pin
Guru_yogi22-Nov-06 19:41
Guru_yogi22-Nov-06 19:41 
Questionfile copyi from one machine to another in asp.net Pin
Guru_yogi22-Nov-06 19:36
Guru_yogi22-Nov-06 19:36 
Question"placing image on webform" Pin
ravikiranreddydharmannagari22-Nov-06 19:21
ravikiranreddydharmannagari22-Nov-06 19:21 
Questionlistbox [modified] Pin
kavithapuranik22-Nov-06 19:00
kavithapuranik22-Nov-06 19:00 
Questionexcel properties Pin
yesu prakash22-Nov-06 18:08
yesu prakash22-Nov-06 18:08 

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.