I have to email sender class. 1 for the sending to external addresses using namespace System.Web.Mail and another for sending to internal address using namespace System.Net.Mail.
I would like to only use System.Net.Mail for both internal and external emials. The problem I ran into is "Mailbox...
Thanks. I learned how to use the OnDataBound event. For those who care to know, I resolved my issue by using the OnDataBound event.
protected void GridView1_OnDataBound(object sender, EventArgs e)
{
DropDownList1.Items.Insert(0,"Select an item...");
}
Thanks for everyone's advice.
My DropDownList control is getting the information from an ObjectDataSource. I need the initial item showing on the DropDownList to be "Select an item" which is not in the database. How do I do this?
See my code below. Thanks.
<asp:DropDownList ID="ddlCP" runat="server"...
Below is the code I am using and I keep getting a "The value for column 'sysEndDate' in table 'cp' is DBNull"
There are other null fields but sysEndDate is the only one I am testing for now. I will validate the other fields after I resolve this issue.
Please help.
protected void...
I am configuring WinExit.scr with a 1800 seconds timer in the GPO. During preview, the user gets and error saying "Error encountered while creating registry key. Make sure you have Set Value and Create Subkey permissions." What is this Set Value and Create Subkey permission? Where do I set this...
I am creating a view page before I write to the database.
The submit button on my CreateTicket.aspx is pointed to ReviewTicket.aspx.
Response.Redirect("ReviewTicket.aspx?Creator=strCreator&PriorityLevel=strPriorityLevel");
the ReviewTicket.aspx writes to the database if the accept button is...
I have a ticketing application. when a ticket is created I am sending a notification email to the ticket recipient and I want to place the ticket url.
if the address is:
http://TicketCenter/tickets/TicketView.aspx?TicketID=50
How do I get this address?
Thanks,
Steve
I ran into an error with your sample code. I found this and it worked.
NorthwindTableAdapters.ProductsTableAdapter adapter = new NorthwindTableAdapters.ProductsTableAdapter();
Northwind.ProductsDataTable products = adapter.GetDataByProductID(1);
Northwind.ProductsRow product = products[0]...
I am trying to display the information to a form using TableAdapter. I created a query GetTicketInfo(@TicketID) in the xsd. The ticket id is passed from the dashboard page.
int intTicketID = int.Parse(Request["TicketID"].ToString());
AppTableAdapter.ticketTableAdapter UpdateTicket = new...
currently I am using the syntax below to open the other page.
<a href="SendMail.aspx">email/SendMail.aspx</a>
What I am trying to accomplish is to populate the fields below when the page opens.
mailMessage.From = txtSender.Text;
mailMessage.Subject = txtSubject.Text;
Thanks,
Steve
I like this solution. So far what I have is the old box which is currently serving the network and the new box with SBS 2003 installed and configured.
Both servers are the same with the exception of the server name. The new box is different.
Please send me documentation for this Swing...
I have two boxes, 1) old box with SBS 2000 installed 2) new box with SBS 2003 installed. I need to migrate the AD database from the SBS2000 box to the SBS2003 box.
Will I need to place both boxes in the same network?
I cannot seem to find documentation to complete this process. Please help...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.