Forum: ASP.NET Jun 18th, 2009 |
| Replies: 2 Views: 519 You have to look at your mail logs and see whats going on with the smtp on the server, the log should have detailed info of whats going on with the send mail. |
Forum: ASP.NET May 25th, 2009 |
| Replies: 2 Views: 327 Can anyone put a quick patch on this script I want it to send the email even if a file does not exist right now I get an error if I try to send it with no file
<%@ Page Language="C#" %>
<%@... |
Forum: ASP.NET May 20th, 2009 |
| Replies: 2 Views: 625 I want to add more textbox's that get sent with the form. firstname, lastname, address etc. |
Forum: ASP.NET May 17th, 2009 |
| Replies: 2 Views: 625 How can I add more fields to get emailed in this script, Is there a way I can just loop through all the fields I can do it asp classic . I tried adding another mail.body but it only sends 1 mail.body... |
Forum: ASP.NET Feb 13th, 2009 |
| Replies: 1 Views: 532 . Make sure you have installed the .Net Framework on your server
. Download the ODBC .Net data provider and install it on your server. You can
find the download here:... |
Forum: ASP.NET Feb 13th, 2009 |
| Replies: 1 Views: 495 go in IIS right click the website that you are going to use goto new virtual folder |
Forum: ASP.NET Feb 9th, 2009 |
| Replies: 3 Views: 939 I ended up getting it I had to use this |
Forum: ASP.NET Feb 7th, 2009 |
| Replies: 3 Views: 939 I can't figure out how to email the password from a sql database I have a formview on my webpage can I pull it from there? or can I pull it directly on my backend code? Using C# I tried +... |
Forum: ASP.NET Feb 7th, 2009 |
| Replies: 2 Views: 901 I got using a session variable
Session["sessFirstName"] = UserName.Text; |
Forum: ASP.NET Feb 6th, 2009 |
| Replies: 2 Views: 901 I want to display the users emp_id from my database on my post page after the login? Can anyone help me out? Can I pull the variable from this select statement and pass it to the next page?
my... |
Forum: ASP.NET Jan 24th, 2009 |
| Replies: 2 Views: 626 This should work you have to fill in the uid and pwd to the ones they gave you
<appSettings>
<add key="ConnectionString"
value="server=the ip address they gave... |
Forum: ASP.NET Sep 4th, 2008 |
| Replies: 3 Views: 3,983 No kept getting error CS1012
This got accepted without asp throwing an error but don't know if it works need to figure out how to post the results now
string sqlCmd = "Select * From customer... |
Forum: ASP.NET Sep 3rd, 2008 |
| Replies: 3 Views: 3,983 I can't find a tutorial anywhere on how to search a sql database using a textbox and a button in asp.net any help. I'm coding in C# Sql database has a customers table I want to display firstname and... |