Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: kebele
  • Content: Threads
  • Order by date
  1. kebele

    Feedback Form

    hi all, I am working on this feedback form and I am entering the data to access database and then also send the result by e-mail. This way, if the email gets lost, there is still a record of the Feedback. I think i can enter the data with out any problem but sending e-mail part is giving me a...
  2. kebele

    calendar

    Hi all, I am working with calendar control and when the user select the year from the link i create for calendar control i do not want them go beyond the year 2007. how can this be done. thanks for the help. <%@ Page Language="VB" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...
  3. kebele

    Date picker

    I am working on the date picker control and I do have one problem that you expert might help me out. When I click the image I created for the date picker the calendar is open up and I select the date and it will populate my text box. So far I do not have any problem but when I wanted to move...
  4. kebele

    How to converting to asp.net page

    Hi all, I have a page set up for the internal customers to order plan and proposal. This page was designed by previous employee using JavaScript code. Ffirst the user will fill out the mailing information and there is a textbox set up for each project and the customer can make the selection like...
  5. kebele

    How to display data in Textboxes using DataReader

    I am displaying some of my fields from the database in to textboxes using datareader and bind it with gridview to display the rest of my fields using gridviw control ,however,The first row is missing from the gridview.Is this because the datareader already read the first row and when i bind it...
  6. kebele

    Zero Sized Reply

    Sometimes I am getting this kind of error msg and I do not know what it means can some one explain to me. thanks The following error was encountered: Zero Sized Reply Squid did not receive any data for this request.
  7. kebele

    How to avoid horizontal scroll with CSS

    I have a two column page and I have a dropdown menu that i created using Asp.net and I want the size of this menu to adjust with a diffrent size of resolution but it does not work for me. It works fine when i use 768x1024 but when i change to 600x800 it goes beyond the screen size and create a...
  8. kebele

    Display DataReader's Data

    I know it is possible to display dataset's data in a label like below but i am just wondering if i could do the same thing for datareader? please help. thanks Label1.Text = myDataSet.Tables("OneItem").Rows(0).Item("PRROUTE").ToString() here is my code for datareader Dim cmd As...
  9. kebele

    Open new window

    Hi all, I would like to know how I can open a new window when my search page returns the result in a gridview control. thanks for the help.
  10. kebele

    How to enforce Validation

    I have a search page with one text box and two dropdowns for the users to make a selection.I would like to enforce the users to make at least one selection from the dropdowns or enter a value to the textbox before doing any searching.Do I have to write javascript for this or is this someting...
  11. kebele

    SqlDataSource and SelectParameters

    Hi all, you have been a lot of help for me and i really appreciate the help i get form you all. My question for today is as follows: I am using sqlDataSource and i created my own sql like this SqlDataSource1.SelectCommand = Sql I am not sure what I did belwo here is legitimate, if so can...
  12. kebele

    Check if there is a value in a parameter collection

    Hi Experts, I am using the below code to see if there is a value in the paramter collection and if there is a value it will execute the next line sql.However, if the users leave the text box empty then i do not have a value in the paramter collection and i do not want to execute the next line...
  13. kebele

    field value is not showing up

    hi all, I am using the below code to create a page where users can see the information and also i create a link for them to download a CSv format file.Everyting works fine except when i open the link to download the CSV file, I just only see the Column name not the values.It just only display...
  14. kebele

    Check the value in the paramter collection

    hi all, Is this possible to check if there is a value in the parameter collection and if there is none skip from executing the next sql line. thanks If Not IsDBNull(SqlDataSource1.SelectParameters(":VendorName")) Then Sql = Sql & " AND (Upper(V.VNAMEL) LIKE '%' ||...
  15. kebele

    not all variables bound

    I am trying to bound my sql statement to with this SqlDataSource1.SelectCommand and i am getting an error message.I am also passing one parameter to this sql statement using the below code. your help is really appreciated. ORA-01008: not all variables bound Description: An unhandled exception...
  16. kebele

    HOW TO: Using sorting / paging on GridView w/o a DataSourceControl

    Hi all, I am working to create paging and sorting Using sorting / paging on GridView w/o a DataSourceControl DataSource. the paging part works fine.The sorting part i have two dropdowns for the user to select the field they would like to sort and also can make a selection from the second...
  17. kebele

    How to store to command paramter collection

    I have multiple value return from the below code and I would like to store this value into paramter collection and i am not sure how i do that.any help would be appreciated. strVendor could hold vendor name A, B, C ..... Dim strSVendor As String = "" For Each liThisOne In lstState.Items...
  18. kebele

    passing values

    Trying to pass the value from the above. It works fine when the selection is only one state,however, if the selection is more than one i get an error msg. here is what i wanted to do Sql = Sql & "AND R.ASTATE IN ('MN',WI','RI') something like this can some one help. thanks Dim strState As...
  19. kebele

    how to create a search page

    My project is to create a page where our customer can do a search to see who in our vendor list. I was asked for this search page to have a capability for the customers to search by state (might select multiple state), counties (might select multiple counties), vendor name and Mn/Distirct(might...
  20. kebele

    Function for sql injection

    Below is a simple function that will give me some protection against an SQL Injection attempt and i am not sure if i create an array right for the vb.net and that is where i am getting an error msg. any clue would be appreciated. 'Function IllegalChars to guard against SQL injection...

Part and Inventory Search

Back
Top