Click here to Skip to main content
15,880,608 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: This page contains both secure and nonsecure items. Do you want to display the nonsecure items asp .net c# Pin
eyeseetee16-Apr-08 1:24
eyeseetee16-Apr-08 1:24 
GeneralRe: This page contains both secure and nonsecure items. Do you want to display the nonsecure items asp .net c# Pin
its.rajendra16-Apr-08 1:28
its.rajendra16-Apr-08 1:28 
GeneralRe: This page contains both secure and nonsecure items. Do you want to display the nonsecure items asp .net c# Pin
its.rajendra16-Apr-08 1:39
its.rajendra16-Apr-08 1:39 
GeneralRe: This page contains both secure and nonsecure items. Do you want to display the nonsecure items asp .net c# Pin
Herman<T>.Instance16-Apr-08 2:10
Herman<T>.Instance16-Apr-08 2:10 
GeneralRe: This page contains both secure and nonsecure items. Do you want to display the nonsecure items asp .net c# Pin
J4amieC16-Apr-08 2:12
J4amieC16-Apr-08 2:12 
GeneralRe: This page contains both secure and nonsecure items. Do you want to display the nonsecure items asp .net c# Pin
its.rajendra16-Apr-08 2:22
its.rajendra16-Apr-08 2:22 
GeneralRe: This page contains both secure and nonsecure items. Do you want to display the nonsecure items asp .net c# Pin
J4amieC16-Apr-08 2:25
J4amieC16-Apr-08 2:25 
Questionhow can i clear gridview Pin
rajkumar.316-Apr-08 0:22
rajkumar.316-Apr-08 0:22 
AnswerRe: how can i clear gridview Pin
Herman<T>.Instance16-Apr-08 0:23
Herman<T>.Instance16-Apr-08 0:23 
GeneralRe: how can i clear gridview Pin
rajkumar.316-Apr-08 0:39
rajkumar.316-Apr-08 0:39 
GeneralRe: how can i clear gridview Pin
Herman<T>.Instance16-Apr-08 0:42
Herman<T>.Instance16-Apr-08 0:42 
AnswerRe: how can i clear gridview Pin
senthilsstil16-Apr-08 0:44
senthilsstil16-Apr-08 0:44 
GeneralRe: how can i clear gridview Pin
rajkumar.316-Apr-08 1:04
rajkumar.316-Apr-08 1:04 
GeneralRe: how can i clear gridview Pin
senthilsstil16-Apr-08 1:08
senthilsstil16-Apr-08 1:08 
GeneralRe: how can i clear gridview Pin
rajkumar.316-Apr-08 1:39
rajkumar.316-Apr-08 1:39 
AnswerRe: how can i clear gridview Pin
Blue_Boy16-Apr-08 0:54
Blue_Boy16-Apr-08 0:54 
GeneralRe: how can i clear gridview Pin
Vijayitsb16-Apr-08 1:21
Vijayitsb16-Apr-08 1:21 
GeneralRe: how can i clear gridview Pin
rajkumar.316-Apr-08 1:27
rajkumar.316-Apr-08 1:27 
GeneralRe: how can i clear gridview Pin
Vijayitsb16-Apr-08 1:39
Vijayitsb16-Apr-08 1:39 
GeneralRe: how can i clear gridview Pin
rajkumar.316-Apr-08 1:48
rajkumar.316-Apr-08 1:48 
GeneralRe: how can i clear gridview Pin
Vijayitsb16-Apr-08 2:01
Vijayitsb16-Apr-08 2:01 
AnswerRe: how can i clear gridview Pin
Ashish Sehajpal16-Apr-08 7:11
Ashish Sehajpal16-Apr-08 7:11 
Generalexe integration [modified] Pin
Cuckoo16-Apr-08 0:13
Cuckoo16-Apr-08 0:13 
GeneralMailbox unavailable. Pin
suveenmohan16-Apr-08 0:09
suveenmohan16-Apr-08 0:09 
GeneralRe: Mailbox unavailable. Pin
eyeseetee16-Apr-08 0:14
eyeseetee16-Apr-08 0:14 
MailMessage objMM = new MailMessage();
objMM.To = "email@y.com";
objMM.From = mailtxt.Text;
objMM.Bcc = "a@b.com";
objMM.Cc = "b@b.com";
objMM.BodyFormat = MailFormat.Html;
objMM.Priority = MailPriority.Normal;
objMM.Subject = subjecttxt.Text;
objMM.Body = "textbox1";
SmtpMail.Send(objMM);
SmtpMail.SmtpServer = "localhost";

try something like that maybe

also try

http://codebetter.com/blogs/peter.van.ooijen/archive/2006/04/05/Using-localhost-as-mailserver-_2800_5.7.1-Unable-to-relay-for-xxx_2900_.aspx

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.