Hi, Have just developed some codes to allow users to send mails to a specified email address. The solutions work no doubt, but the mails are going to the spam mail and not into the Inbox. What might be responsible with this.... Please help out
Banjo Ayorinde
Posts
-
Email to Inbox, Not Spam -
Data storage and Uploading fileHi, I can successfully insert data into database fields. I can also upload file into database field. However, i wish to combine both in one operation i.e. inserting data into fields as well as uploading file in to another field. Example of fields: Name, Address, Story (where story is a field to store uploaded file) Can someone help please
-
Generating Incremental Values preceded with lettersHi, am using sql 2005 as backend Am trying to generate auto-incremental values that is preceded with letters from my C# codes, based on user text input into database. The user input could be MAN, LADY, UNCLE etc. However, I intend to generate values into the database such as: MAN00001 MAN00002 LADY0001 LADY0002 UNCLE0001 etc. Kindly show me the way
-
Introduction to Client/Server ProgrammingHi, Have been developing web app using c# and asp.net. I intend venturing into Client/Server Programming. Can anyone direct me to where i can get e-books to start? preferably free e-books. Thanks in anticipation.
-
Access to the path is deniedHi, I want to upload a file to a folder in production server, using the SaveAs method of the upload server control. My target folder is 'E:\inetpub\vhosts\marinasecuritieslimited.com\httpdocs\stockinfo\test_data.txt However i got this error "Access to the path 'E:\inetpub\vhosts\marinasecuritieslimited.com\httpdocs\stockinfo\test_data.txt' is denied" after clicking the upload button. Have granted asp.net user access to write the folder, yet the error is still the same. Can someone help me please?
-
Checking MAX() of a table in C#Hi, I used sql 2005 as my backend. How do i check the MAX(of a field) in a table in from C# codes
-
Mails delivery Spam Instead of InboxHi, I develop an email application that runs fine. But it sends mails to Spam box of recepient and not to the Inbox. How do I rectify this cos i want it to be dilivered into the Inbox. Here is my code snippet for the sendindMail Method. private void sendingMail() { Dictionary<string, Stream> attachments = new Dictionary<string, Stream>(); if(NewFileUpload.HasFile) { attachments.Add(NewFileUpload.FileName, NewFileUpload.PostedFile.InputStream); } FacadeSystem.SendEmailMessage(emailToTextBox.Text, SubjectTextBox.Text, BodyTextBox.Text, attachments); } Here is my web setting for the MailSetting. Thanks
-
disabling a row in gridviewHi friend, How do i disable a row in an asp.net Gridview based on value of one of its columns. Am using C#.Net 2008 Thanks in anticipation of your assistance
-
Instance Failure ErrorI use sql 2005 along with DAAB using asp.net (c#.Net) But when i attempt to run the app, i got this error " Instance Failure". How do I resolve this and what could be responsible. Thanks
-
Displaying filetype icon in GridviewI want to display the icon of a file (filename.extension) that is stored in table using GridView
-
Scripting SQL 2005 Database objects and DataI want to script a database in sql 2005, i only succeeded in scripting only the objects, but without tables data. How do i achieve my mission
-
Setting Grid values into Text BoxI want to set Data from a row in a DataGrid into independent text boxes. I mean each column of the Grid into respective Text Boxes, based on selected row. This is to enable me edit such row.
-
Insertion from DropDownListYea! have used selectedValue property, but still pick the fisrt value and not the selected value during insertion. pls this only affect dropdownlist filled with values from a table and not that of hardcoded values
-
Insertion from DropDownListI fill a dropdownlist with values from a table's column. but when i perform an insertion operation into another table based on selected data from the dropdownlist, it only insert the first value of the dropdownlist and not the one i selected. How do i resolve this?
-
Custom Data Access ObjectsAm relatively new to Asp.Net and OOP. Can someone expose me to the concept of Data Access Objects and a simple application
-
Validating Web Server Controls (e.g DetailsView)Am using the DetailsView web server control but which to validate some fields for data entry or edit. How do I validate desired fields
-
Problem with Login (Asp.net Membership Providert)I can't log on to my web app after deployment (which I can do before deployment). Though I use aspnet in-bult Membership Provider. Can anyone help me?
-
Connect SQL Server 2005 from VS.Net 2005I need the C# code snipset to establish a connection with a database [LabourData.mdf] created from SQL Server 2005. 've used this but the connection was not effective: public string conet() { return "server=.;initial catalog=LabourData;uid=sa;pwd=solutions!" } Note: Am new to SQL Server 2005 Thanks
-
Connecting SQL Server 2005 from VS.Net 2005I need the C# code snipset to establish a connection with a database [LabourData.mdf] created from SQL Server 2005. Note: Am new to SQL Server 2005 Thanks
-
Connecting SQLExpress codesI need the C# codes snipset to establish a connection to a database [Club.mdf] created using SQlExpress bundled with visual studio.net 2005. Note: Am handling a web project. Thanks