Search results for query: *

  • Users: buggiez
  • Content: Threads
  • Order by date
  1. B

    List of Titles and number of comments to be displayed

    Hi all, i have 2 DBs: Energy, EnergyComments Energy: -id (pk) -energytitle EnergyComments: -id (pk) -energyid (fk) -comment Description of my program: There is a list of energytitles in the DB. (for now lets say there are 10 records in it) When a comment was given to the title, each...
  2. B

    SQL LIKE statement with querystring

    hi all. for my gridview, i have a datasource and it includes an sql statement. i would like my sql statement to retrieve records by passing a query string. this is my sql statement: SELECT * FROM [mailer] where subject LIKE '% '@s' %' obviously i would like to retrieve the records based on...
  3. B

    Search results and listing

    dear all, i have a listing page, which is divided into 2 sections within the page: 1. Search box 2. Gridview which contains details of listing originally, all the details from the DB is displayed in the gridview. and in the search box, there is a search button and for example i would like to...
  4. B

    remove duplicated value in arraylist

    supposingly i have an arraylist of userIDs, and there are a few duplicated userIDs in the arraylist (i.e. there are 2 records of userID: "21") how do i actually remove the record out of the duplicated record, to make only unique userIDs to stay in the arraylist? that is, to have only a single...
  5. B

    GRIDVIEW set different image for 1 command

    Hi i have a gridview and i had included a "delete" command. however, i would like the command to be displayed as an image (2 images in fact): "Delete" and "NoDelete" images. the "gridview will display "Delete" according to the status of the data (Sent/Saved). if the status is "saved", it will...
  6. B

    displaying selected items from db in dynamic checkboxlist.

    hi i have a checkboxlist with ID=cbl_news, and the list of checkboxlist items is from datasource (database table : newsgroup). i would like to retrieve a list of newsgroupID (from another database table: selectednewsgroup), which have records of previously stored newsgroupIDs when they are...
  7. B

    for loop with arraylist

    hi i have a question.. my subscribers has subscribed to several newsletters groups : Entertainment/Games/Shopping, which means that 1 subscriber can be subscribed to more than 1 newsletter. when i create a newsletter, i want to select the list of subscribers based on the newsletter groups...
  8. B

    question on calendar control

    hi all. sorry for the trouble again i seem to have too many questions in here yea. by the way. i would like to ask if anybody know how to display the dates of a certain week, just be selecting a particular date from the calendar control in asp.net. for example if i clicked on 10th feb, it...
  9. B

    question on dialog box with yes/no buttons

    hi all. lets say i want a button to fire a dialog box when clicked.... if u clicked on "yes", the process will continue; if clicked on "no", the process will stop. this is just an example. my questions is...in this code below... how do i continue the if then else statement...
  10. B

    question on sms/email.

    Just a question, i am doing an application for reminders. the reminders will be sent via sms/email at a certain date. the date and time will be based on the information i insert into the database. for example, i have a record of date 1/3/2006, time of 8pm. this is the date and time the sms or...
  11. B

    Getting age by birthdate?

    Dear all, any1 know how to determine the current age of a person just by the data of a birthdate in the database? (lets say age is not stored in the database) i guess that i will have to take today's date and minus the birthdate, but i dont know how to do so in asp.net.. hope any1 will...
  12. B

    How to uncheck selected value in radiobuttonlist?

    Hi all. i would like to ask if it is possibile to uncheck the selected value of radiobuttonlist when i click on the reset button? by the way the reset button will reset all the fields. it worked for dropdownlists and textbox, but im not sure for radiobuttonlist... thanks in advance =) valerie
Back
Top