i have 2 template field columns time and total_time in a gridview.. time column has a label in the item template and a textbox in th edit item template..
similarly, total_time has a label in the item template and a textbox in the edit item templte..
what i need is, when the user enters a value in the time textbox,it must get updated in the total_time textbox.. and on edit,when the user changes the value of the time textbox ,dis value must be ADDED to the total_time textbox.. both should be displayed in the label also..
I have one text box for accepting date. I want to store date column in database is null when the text box value is null and how to bind the this null value to text box when i retrieve.
There is an asp.net Page in which i have to entered the quantity in the textbox txtRQ..Now if i select yes in the dropdownlist named ddlMR,this qty of the textbox should get added to the qty field of an oracle table GOODSMASTERand if i select NO in the dropdownlist ddlMR, this qty should be added to the qty field of another table called SALESRETURNDETAILS.
how can i search for items using a textbox. i want it to search inside a database and return the items searched eg when i search ferrari it will return all drivers that are with ferrari.
Text box has to allow digits and alphabets using ajax server side controls and in this if the user types small alphabets it has to convert capital how to do this using ajax server side controls?
now have tried to locate and find anything about how to make a
TEXTBOX and A Button "Search"
Problem is that I have made this "bellow" and when I then enter a "value" into texbox2 and hit enter on the button it wont show me the "emnenummer" that I have requested.
im not even sure this is the correct way to do a "search"
I m trying to populate a set of 3 textboxes based on a value entered into the first textbox. So when a user enters a value in the first textbox, i would like them to be able to tab out of it and it will automatically populate the remaining textboxes.
I know javascript has the OnBlur function which can do this but is there a way to accomplish this using asp.net (c#)
I want to search a value from my database then display that value in a table. I have a textbox and search button in my site. I enter a value to the textbox and then click the search button but it does not work.
I have created a search page which outputs results in a repeater. It uses a stored procedure to search a table %like a textbox value, what's the best way to make it search multiple tables and output the results on one button click?
As i could just use seperate stored procedures and repeaters for each table i want to search, which is only 2, but this seems inefficient.
in my asp.net_vb web there is a text box (textbox1) in which a date is dispalyed from database (eg 21-Mar-2012) in another text box (textbox2) i want to display
if the date is less than 30 Jun then the textbox2 should display 1 Jul+the year of textbox1
if the textbox1 date is greater than 30 Jun the text box2 should display 1 Dec + the year of textbox1
Means if i have two columns in database namely name & email
i wanna search the users or email by entering either name or email on textbox then after clicking the search button record will be displayed in gridview ?
Let's say I have a gridview with some columns like, title, name, funding agency. Here's an example of what I want to do:
I want to display all the records in the gridview to start. There would be a dropdownlist that lets the user select whether to search by title, name, funding agency and a text box that lets them type in what they want to search for (and a button to start the search). After searching, the gridview would only display the records that matched the criteria.i already know how to connect datasets to the gridview, but i am using mysql database and writing code in vb.how to accomplish this task
on my masterpage I have a search box contained in it is a textbox (TextBox1.Text) and a button (Button1_Click) both asp controls.
Im trying to figure out how to search my database and retrieve things that may be similar, I have a User table that I would like to search for Users but spelling could be wrong so how do I still return someone if the spelling is wrong if you know what I mean?