Click here to Skip to main content
15,908,907 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRewrite Url on page post Back Pin
amit sahu2025-Mar-09 20:34
amit sahu2025-Mar-09 20:34 
AnswerRe: Rewrite Url on page post Back Pin
anilpal25-Mar-09 22:49
anilpal25-Mar-09 22:49 
GeneralRe: Rewrite Url on page post Back Pin
amit sahu2025-Mar-09 22:56
amit sahu2025-Mar-09 22:56 
GeneralDAL & BLL Pin
Ramkumar_S25-Mar-09 20:03
Ramkumar_S25-Mar-09 20:03 
GeneralRe: DAL & BLL Pin
N a v a n e e t h25-Mar-09 20:24
N a v a n e e t h25-Mar-09 20:24 
GeneralRe: DAL & BLL Pin
Abhijit Jana25-Mar-09 20:48
professionalAbhijit Jana25-Mar-09 20:48 
GeneralRe: DAL & BLL Pin
Vimalsoft(Pty) Ltd25-Mar-09 21:56
professionalVimalsoft(Pty) Ltd25-Mar-09 21:56 
QuestionFile viewing from another directory Pin
CrazyCoder2625-Mar-09 18:56
CrazyCoder2625-Mar-09 18:56 
AnswerRe: File viewing from another directory Pin
tech60325-Mar-09 19:04
tech60325-Mar-09 19:04 
GeneralRe: File viewing from another directory Pin
CrazyCoder2625-Mar-09 19:14
CrazyCoder2625-Mar-09 19:14 
GeneralRe: File viewing from another directory Pin
N a v a n e e t h25-Mar-09 20:38
N a v a n e e t h25-Mar-09 20:38 
GeneralRe: File viewing from another directory Pin
CrazyCoder2626-Mar-09 22:00
CrazyCoder2626-Mar-09 22:00 
AnswerRe: File viewing from another directory Pin
Ravindra Bisen25-Mar-09 22:50
Ravindra Bisen25-Mar-09 22:50 
QuestionProblem in modal pop in asp.net 2008 ajax Pin
hozsam25-Mar-09 18:43
hozsam25-Mar-09 18:43 
Questionhow to redirect to main page when session expired Pin
prasadbuddhika25-Mar-09 18:14
prasadbuddhika25-Mar-09 18:14 
AnswerRe: how to redirect to main page when session expired Pin
tech60325-Mar-09 19:09
tech60325-Mar-09 19:09 
QuestionSending email getting problem Pin
Jagz W25-Mar-09 16:25
professionalJagz W25-Mar-09 16:25 
AnswerRe: Sending email getting problem Pin
tech60325-Mar-09 17:53
tech60325-Mar-09 17:53 
You may need to authenticate to your email server so you would need to add that to your code. Below is a code snippet using cdosys, that i tested answering a similar question the other day.

Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="youremail@yourdomain.com"
myMail.To="youremail@yourdomain.com"
myMail.TextBody="This is a message."
myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing")=2
'Name or IP of remote SMTP server
myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver")="youremailserver"
'Server port
myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport")=25
'authenticate
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
'email address for authentication
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "youremailaddresshere"
'email password
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "youremailpasswordhere"
myMail.Configuration.Fields.Update
myMail.Send
set myMail=nothing

Hope this helps

Matthew Vass
QA Analyst
mvass@hostmysite.com
HostMySite.com

QuestionJavascript:Disable BUtton Pin
Ramkithepower25-Mar-09 16:10
Ramkithepower25-Mar-09 16:10 
Questionwhat is equivalent to follwoing C# code to VB Pin
rprateek25-Mar-09 12:49
rprateek25-Mar-09 12:49 
AnswerRe: what is equivalent to follwoing C# code to VB Pin
Xmen Real 25-Mar-09 14:01
professional Xmen Real 25-Mar-09 14:01 
QuestionAlligning text boxes using CSS (don't want to use &nbsp) Pin
Tina P25-Mar-09 11:59
Tina P25-Mar-09 11:59 
AnswerRe: Alligning text boxes using CSS (don't want to use &nbsp) Pin
tech60325-Mar-09 15:10
tech60325-Mar-09 15:10 
GeneralRe: Alligning text boxes using CSS (don't want to use &nbsp) Pin
Tina P26-Mar-09 13:29
Tina P26-Mar-09 13:29 
QuestionTo give access in some pages to the unauthenticated users Pin
Minhajur Rahman Khan25-Mar-09 8:57
Minhajur Rahman Khan25-Mar-09 8:57 

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.