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 dencom 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: taree
  • Content: Threads
  • Order by date
  1. taree

    Does not contain a definition for 'rowindex'

    I get Does not contain a definition for 'rowindex' error.any clue will be appreciated. protected void btnConAd_Click(object sender, EventArgs e) { string valStr; foreach (GridView gvRows in gvConAd.Rows) { CheckBox chkSelect =...
  2. taree

    compare strings

    I am trying to do a comparison like below and somehow it is not working. Is it because I am trying to compare a value assigned to a variable with the string. How can I fix that? please help. thank you If String.Compare(strStates1, "ALL", True) = -1 Then .Append(" AND R.STATE...
  3. taree

    select multiple values from list control

    I am trying to select a value from the list control. If the user select "ALL" I would like to pass the value to my sql statement. if the user select more than one value, I would like to separte the values in comma and pass to the query. I have the code below and my problem is it is not passing...
  4. taree

    passing parameter value form aspx page to vb.net code (App_code) folde

    I have a vb.net code with one class "letprop" in the APP_code folder. I am wondering if I could pass a value from the aspx page to the letprop class. <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default3.aspx.vb" Inherits="Default3" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...
  5. taree

    Adding values

    I get an error is not null supported. can someone help (if {U_order.order_status}='denied' AND {U_order.DATE_stored_RELEASED} is NOT NULL ) then 1 else 0
  6. taree

    How to change color every other two rows

    I use this script to change the color of the record when the record number is an odd number. However, the customer wants for the color to be changed every other two rows no matter what the row number is. I am not sure how this can be done.also, ask if it is only one row in the end then to move...
  7. taree

    Text Cut off

    In my report the text is cut off and I am not sure why it is cut off. is there place that I got to change the setting?
  8. taree

    Encryption Web.config file

    I am able to encrypt the web.confg file in the development server without any problem. however, when i move the code to the production server it gives me an error. Do I need to copy any key from the development server over to the production? I am guessing it is not finding the key that used to...
  9. taree

    how to use click rows inside the gridview

    I would like to execure createCSV when the user select the row from the gridview. I am not sure how I can capture the contract id and psss it to the procedure.please help. thank you <asp:BoundField DataField="lettingdate" HeaderText="Letting Date" > <HeaderStyle...
  10. taree

    Index was out of range

    I get the below error I have a field that I bound with the gridview. when the value for the row is the same I just only display one row and ignore the other until the row value is different. [code] <asp:BoundField DataField="lettingdate" HeaderText="Letting Date" >...
  11. taree

    how to use click button inside the gridview

    what I am trying to do is that to capture the value of the value of the contract id from the returned rows and pass to the procedure. when the user click the link in the gridview the value of the contract id is passed to the procedur. how can I do this.right now as you can see in the code I...
  12. taree

    How to design a page and group the result by month

    I just want to create a page where the information is grouped month. like january, feb....the purpose of this page is to display awarded job for the contractors. my intention is to diplay jobs let and awarded in january grouped together and the same for the rest of the months. can someone throw...
  13. taree

    Converting Rows To Column

    Is is possible to convert rows to columns using CR XI and oracle 10i the number of rows is unknown. sometimes we have five vendors bid for the job. sometime we have one or two or many vendors bid for the job. please let me know how this can be done. thank you
  14. taree

    How to generate dataset form XML file

    What I would like to do is to copy the xml file and generate dataset and store it to the database. 1- Do I need to have a storage place for the customers to store their XML file or can I read the xml file and generate the dataset? 2- I am thinking to write insert statement to copy the values...
  15. taree

    How to add dropdownlist in the footer section

    Is it possible to add a dropdownlist in the footer section of gridview? If so, can someone show me how I can do this.I just want to use the dropdownlist for the users to select the number of rows per page. thank you
  16. taree

    how to get virtual path of web.config from global.aspx

    can someone help me how to get to the web.config file? I want to get to that to encrypt the connection string. I get blank path when I run the code below....Thank you for the help. Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) ' Code that runs on application...
  17. taree

    How custom paging works with oracle database

    I am working to create a customize paging using oracle database.My code is only gives me the first 20 records from the database and I know because everytime it loads it get the value 20 and it does not show the paging number. I would like to have the paging to be displayed in the first page and...
  18. taree

    Custom paging for oracle

    I would like to pass the page number and the number of records per rows. right now it is hard coded in my code and wondering how to get this from the asp.net page. thanks Imports System Imports System.Data Imports Oracle.DataAccess.Client Imports Oracle.DataAccess.Types Public Class...
  19. taree

    Convert asp.net page to PDF

    Will it possible to conver the asp.net page to pdf file. I could convert gridview to pdf but I am not sure how to convert the whole page to pdf file. I am using : iTextSharp thank you [code] Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click...
  20. taree

    ASP.NET AND ORACLE PROCEDURE

    I have a oracle procedure that i would like to use in my asp.net page. This procedure has one parameter and the parameter accepts more than one value. my problem is how can I embede this procdure in my asp.net page. I do not have a problme if this procedure takes one value. but in this case it...

Part and Inventory Search

Back
Top