Drop Down List With Textbox Input?

May 26, 2010

Is it possible to have a drop down list that is populated from sql and have a option for "other". If the person selects "other" then they can enter a value for this field into a textbox.

View 10 Replies


Similar Messages:

Web Forms :: Email With More Than Body (Textbox / Drop Down List)

Feb 8, 2010

I have a working email form in VB.NET but I want to create a form that receives more than just plain text for the body. I need it to take from more than one text box and drop down list and apply it to the body section.

Imports System.Net.Mail
Partial Class _Default
Inherits System.Web.UI.Page
Protected Sub Button_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim mail As MailMessage = New MailMessage()
mail.To.Add(email@email.com)
mail.From = New MailAddress(fromaddress.Text)
mail.Subject = textsubject.text
mail.Body = msg.Text
mail.IsBodyHtml = True
Dim smtp As SmtpClient = New SmtpClient()
smtp.Host = "host here"
smtp.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network
smtp.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials
smtp.Send(mail)
answer.text = "Thank you for your participation in my Dissertation research"
End Sub
End Class

Currently I have this:
Email:
<asp:textbox id="fromaddress" runat="server" /><br /><br />
The subject:
<asp:textbox id="textsubject" runat="server"/><br /><br />
Enter your message:<br />
<asp:textbox id="msg" runat="server" textmode="multiline" columns="35" rows="8"/><br />
<asp:button ID="Button1" text="Send" onclick="Button_Click" runat="server"/><br />
<asp:label id="answer" runat="server" /> </asp:Content>

View 1 Replies

MVC :: How To Retain Values In Drop Donw List, Textbox , Checkbox And Radio Button

Jul 26, 2010

In asp.net mvc when validation fails error message is disaplayed on same view, values entered by user are lost . Also all the drop down list items needs to be passed again in the viewData. Selected values in the drop down list again reset. How to display same view again with failed validation message.

View 2 Replies

Forms Data Controls :: How To Populate A Textbox Inside FormView From Drop-down List

Dec 21, 2010

I have a drop-down list that is wired up to a datasource from one table to retrieve a Vendor ID and Vendor Name. This ddl is outside a FormView that is wired up to a datasource containing Vendor contracts.

When I choose a Vendor from the ddl, I am able to populate a textbox outside of FormView with the Vendor ID from the ddl. However, what I need to do is populate a textbox within FormView with the Vendor ID. FormView is in Insert Mode by default since my page will be used for Adding Contracts only.

View 4 Replies

Web Forms :: Drop Down List Dependant On Selection In Another Drop Down List?

Mar 30, 2010

I have a drop down list that has the initials of about 12 of our sales guys.How can I make it so that when they select their initials from the list, the next drop down list only shows their customers.In my database there is a column for customer name and salesman.

View 6 Replies

Web Forms :: How To Have 2 Cascading Drop Down Lists For The Same Drop Down List

Mar 12, 2010

How can I have 2 Cascading Drop Down Lists for the same Drop Down List?here is my problemi have 3 drop down lists read from database1- Schools List 2- Classes List3- Teachers ListEvery School will have more than 1 Class and more than 1 TeacherWhat I want is when user select a School from Schools Drop Down List then BOTH (Classes and Teachers) should be refreshed based on the School Drop Down List

View 1 Replies

Web Forms :: How To Generate Rtf File Based On Input Field (textbox Input By User) C#

May 27, 2010

how can i generate rtf file based on input field(textbox input by user) c#

View 3 Replies

C# - Is There A Security Reason To Validate A Textbox Input If You Are Limiting The Max Length Of The Input

Oct 1, 2010

Since I'm new to coding and I'm trying to understand why here is a little more detail on the question.If you have a text box and you are limiting the input to say 2 charactrs do you really need to validate the input further? What I have is a text box that has a max length of 2. Is there a security reason to add a validator to the textbox. I should add this is in Asp.net.

View 8 Replies

Forms Data Controls :: Can Show Multiple Columns In Drop Down List Or List Box

Jun 24, 2010

I have drop down list box that I would like to show two columns, is this possible? Or can it be done with a list box?The query correctly retrieves all of the table data to be displayed, one colum is an abbreviation, the other a bit longer description.

View 2 Replies

Web Forms :: Adding List Items To Drop Down Control From Generic List?

Feb 6, 2010

I have the following Students class:

[Code]....

I need the 1 since it's a foreign key in another table. For the life of me, I can't get this to work like this.

View 7 Replies

MVC :: How To Pass All The Option List Item From The Drop Down List To View Model

Nov 10, 2010

I have a requirement in my application that, while saving the application, need to get all the value from drop down list and pass it to the view model. But application should not allow the user to select more than one item from drop down list manually, ie, only one value at a time. My view model is like ...

public class ListManagement
{
public IEnumerable<selectListItem> InactiveProduct { get; set; }
public string[] InactiveProductSelected { get; set; }
public IEnumerable<selectListItem> ActiveProduct { get; set; }
}

[code]...

View 3 Replies

Drop Down List Has A SelectedValue Which Is Invalid Because It Does Not Exist In The List Of Items

Mar 25, 2011

I am getting this error yet I know it to be untrue.This is the code:

ddlPartnerOrganisation.DataSource = agency.AgencyGetListOfEYDN();
string temp = ddlPartnerOrganisation.SelectedValue.ToString();
ddlPartnerOrganisation.DataValueField = "AgencyID"
;
ddlPartnerOrganisation.DataTextField = "AgencyName"
;
ddlPartnerOrganisation.DataBind();

View 4 Replies

Web Forms :: Empty TextBox Input Gives "Input String Was Not In A Correct Format" Error

Jun 10, 2010

I'm trying to update a db record via a business object, based on a users input.

In my button event handler, I check for a null or empty value like this before I set the object properties:

[Code]....

But if the textbox is empty, I get the "System.FormatException:

Input string was not in a correct format." in the line:

[Code]....

How can this be?

View 3 Replies

Can Bound Drop Down List Changes To First Item In List

Aug 31, 2010

I have two drop down list on a page. The first one list projects and the second list users. The userlist is populated with an object datasourse that pulls a list of users for the selected Project.Whenever the Project list selection changes the second ddl Userlist always reverts to the first person in the list instead the person that was selected before a new Project was chosen.

View 1 Replies

MVC :: Drop Down List As Filter On List View?

Jan 7, 2011

I am trying to create an MVC List View that can be filtered by the value selected from a drop down list.

Selecting a value should repost the page ... Since there is no concept of view state data I am having some issues with this ... I can get the repost to take place but my drop down resets and I am not able to get the value that was selected.

ASSET CONTROLLER:

[Code]....

[Code]....

I have tried many of the posts that refer to setting up drop down lists but can't set them up in the content because this is a List View.

View 8 Replies

MVC :: Add Textbox And Change ActionLink To Use Textbox Input?

Oct 5, 2010

How do I add a textbox for user input in the view and then change the link below to user the user input instead of the hard coded ID?

<%= Html.ActionLink("click me", "Index", new { id = 10057 } ) %>

View 3 Replies

Drop Down List Had Zero Value?

Apr 20, 2010

I had ddl which in selected changed it execute some code but when i tried to do that it wasn't worked well WHEN i checked the reason i found that ddl in selected value =0 also i made all well and this is my code

protected void DDlProductFamily_SelectedIndexChanged(object sender, EventArgs e)
{
if (DDlProductFamily.DataValueField.Contains("ProductCategory_Id"))
using (SqlConnection Con = Connection.GetConnection())
{
SqlCommand Com = new SqlCommand("GetListViewByProductCategory", Con);
Com.CommandType = CommandType.StoredProcedure;
Com.Parameters.Add(Parameter.NewInt("@ProductCategory_Id", DDlProductFamily.SelectedValue.ToString()));
SqlDataAdapter DA = new SqlDataAdapter(Com);
DA.Fill(dt);
DataList1.DataSource = dt;
DataList1.DataBind();
}
}

View 1 Replies

MVC :: Getting The Value Of A Drop Down List?

Apr 6, 2010

i have a dropdownlist used like this

[Code]....

it is always returning the same value regardless of which one is selected from the list. How do I get the currently selected value of this list?

View 4 Replies

Validating The Drop Down List?

Aug 27, 2010

validating the drop down list, that list contains 5 values if it is not selected then it should give errormessage

View 2 Replies

C# - Drop Down List In A Gridview?

Jan 5, 2011

I have a gridview, inside the gridview I have a template field and inside that, a drop down list.

<asp:TemplateField>
<ItemTemplate>
<asp:DropDownList ID="Hello" runat="server">

[code]...

View 3 Replies

C# - Check If A Drop Down List Contains A Value?

Jan 5, 2010

When the user navigates to a new page, this ddl's selected index is determined by a cookie, but if the ddl doesn't contain that cookie's value, then I'd like it to be set the 0. What method would I use for the ddl? Is a loop the best way, or is there a simply if statement I can perform?

This is what I've attempted, but it doesn't return a bool.

if ( !ddlCustomerNumber.Items.FindByText( GetCustomerNumberCookie().ToString() ) )
ddlCustomerNumber.SelectedIndex = 0;

View 4 Replies

MVC :: Drop Down List MVC Default Value?

Mar 12, 2010

i have a drop down list like so:

<%= Html.DropDownList("CampaignId", null, "-- Select Campaign --", new { @class = "dropdown" })%>

I want to be able to have '0' (zero) for CampaignId for "--Select Campaign--" selection. Is this possible to specify 0(zero) for "--Select Campaign-- option instead of ""?

View 2 Replies

MVC :: How To Populate A Drop Down List From A Datatable

Mar 4, 2010

I'm trying to populate a drop down list from a datatable. Is this correct way of doing it?

public ViewResult Index()
{
ViewData["CampaignList"] = List;
return View();
}
public IEnumerable<SelectListItem> List
{
get
{
DataTable dt = CampaignRow.GetList(DB, 100, true);
List<SelectListItem> list = new List<SelectListItem>();
foreach (DataRow row in dt.Rows)
{
list.Add(new SelectListItem
{
Text = Convert.ToString(row["CampaignName"]),
Value = Convert.ToString(row["CampaignId"]),
});
}
return list;
}
}

how can i stylize drop down list? how can i add an empty first value ie "select campaign"

View 3 Replies

Disabling Viewstate On Drop Down List Causes?

Sep 13, 2010

I have a page that has two drop down lists on it and a button. All controls sit in an update panel. The first drop down list (ddl1) contains a lot of values which caused a huge viewstate so I disabled viewstate on it. In the page oninit event I populate the drop down list every time the page is posted back. This all seems to work fine, it shows all the values and I can access the selected value in my event handler.

ddl1 has the autopostback attribute set to true so when its value changes the second drop down list (ddl2) is populated with some values that depend on the selection in ddl1. This also works fine, the values in ddl2 change when I select a value in ddl1.

ddl2 does not have viewstate disabled. The button that sits under my two drop down lists is disabled by default and becomes enabled when the value of ddl2 is changed to anything except string.empty. This is where I run into problems. ddl2 does an autopostback too but it seems to lose the selected index/value. When I'm in my code to check whether to enable or disable the button the selected index is always 0 and the selected value is string.Empty.

If I enable viewstate on ddl1 this all works fine. Could anyone point me to what I'm doing wrong?

Here is the code executed by the ddl2 postback:

[Code]....

View 1 Replies

Get Birth Date In Drop Down List In C#

Aug 4, 2010

I want to get birthdate in three different drop down lists. When first DropDownlist is year, second is month and third is a day.n to choose year and month and get in a day DropDownList num of days in choosen month and year.ow can i do this?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved