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 Wanet Telecoms Ltd 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: kondakindi
  • Content: Threads
  • Order by date
  1. kondakindi

    Pass a variable to a javascript function in another ASP page?

    I call a vb function in an another page from an asp page which inturn has to return a variable to the initial asp page to be accessed by the javascript of the page. Lets say i am calling a function in an asp page B from an asp page A, the function in the page B has to return a variable back to...
  2. kondakindi

    Gregorian Calender to get the week day

    Hi, I haev to get a specific date from the date the user enters and then 10 consective dates which are +14 each.Which means from the date i get i need everyday alternate sunday date coming up for then times.I have used the (GregorianCalender.DAy_OF_YEAR+date+14)but this doeesn't add properily...
  3. kondakindi

    jsp validation function

    Hi, I have a select box in the jsp page i would like to check if the user has selected any item if not it should not proceeed and reload the same page with error stating you have to select . i have wriiten a function to check null values it doesn't work.. <select name="q_value"> <option...
  4. kondakindi

    jsp validation function

    Hi, I have a select box in the jsp page i would like to check if the user has selected any item if not it should not proceeed and reload the same page with error stating you have to select . i have wriiten a function to check null values it doesn't work.. <select name="q_value"> <option...
  5. kondakindi

    collapsable UL

    Hi, I have created three ul class.I am not able to create a collaspable ul pattern.It just disappears or changes visibilty but i am not able to create a tree structure. i have used attributes like visibility:visible, visibility:hidden or display:none Is it possible to without using php or...
  6. kondakindi

    CSS class

    Hi, I have a page in which i a left menu for which i have give the left bullets a specific class. like "leftnav" left menu has about research contact The above will have submenu or bars like about will have setion like: welcome general which would have htmls or dhtmls inside Should...
  7. kondakindi

    Using Calander Class get Current Date and compare

    Hi, I have a Date coming from a string variable of a form into a servlet .where i compare the date i it is greater than current date it gives always error invalid start date the code is as follows could u tell me what is the error as i have used calendar class String syear="2005"; String...
  8. kondakindi

    Document.write in same page

    Hi, I have this html page for validation i have written a Java Script.For diplaying error if any i use window.document.write(" error "); But it goes to new page is it possible that it goes to the same page just displaying the error on the top or bottom Thanks
  9. kondakindi

    change color of text box

    Hi, Is it possible to change the border or color of the text box i tired but it didn't work Thanks
  10. kondakindi

    Insert %rowtype values in table

    Hi, I have one row data in %rowtype .and when in insert the values in that rowtype it says column not allowed here: the following is the example rec books%rowtype; select * into rec from books where bno='8888'; insert into book_archive values (rec.bno,rec.title,recauthor and so on...); all...
  11. kondakindi

    Check HashMap Values with a String

    Hi, I have a Hashmap of arraylist which means the values of the hashmap are arraylist of 1,2 ,3,5 etc when i read the specfic value of the has map based on get and check it with a string it returns false even if the string is the same. eg: HashMap hm=new Hashmap(); Assume this has key like...
  12. kondakindi

    Table structure for the execute immediate

    table structure is of report1 is app_name varchar2(10), name varchar2(10), insert_date date, session_id varchar2(50), seq_num number, Q_1 varchar2(500), Q_2 varchar2(500), so on till Q_40 am using a execute immdeiate command though it doesn't show error for first 20 rows it doesn't...
  13. kondakindi

    update a table using execute immediate

    Hi, I have a table with column names as Q_1,Q_2 0 columns till 7etc I would like to update the table using execute immediate with values from a pl/SQl table around for 40 lines itsays nothing then says invalid identifier for the set values .i can't take a the fields statically that is why i am...
  14. kondakindi

    Primary Key and Foreign Key in a table

    I have a table employee_Current_Details which refers to the table Employee_Details with reference to the Emp_Id. I want this Emp_id to be unique in both the tables. How do i do that? Can i declare the column as both primary and Foreign key? or i need to check if it is existing before insert...
  15. kondakindi

    ldap authentication in java

    I amtrying to use ldap withs ervlets.. i ahve downloaded the netscape ldap package and set environment variables and to ldapfilt.jar and ldapjdk.jar The file complies but gives a java.lang.NoClassDefFoundError: netscape/ldap/LDAPException at Login.doPost(Login.java:59) .i am not able to...
  16. kondakindi

    How to Add 15 minutes to a given time

    Hi, I need to add 15 minutes to a given time. say if the time intervel given to me is 2.30 PM i need to add 15 minutes to it and display it. Can anyone help me in this. Thanks Kondakindi
  17. kondakindi

    Radio button value retrieval

    Hi, I have a couple of radio buttons in my form and when the form is submitted i need to check which radio button is checked. I am not able to get the value of the radio button. even after checking the radio button it is showing a msg not checked. here is my code. function validate(f) {...
  18. kondakindi

    using oracle.java.array

    Hi, I Have created a normal table in oracle and a arraytype xx-type of varchar2(255) in oracle.. I have wriiten a procedure in to insert values into the table in oracle using the array type. In java when i call that procedure and create a orcale.sql.array type and give the connection and...
  19. kondakindi

    can both oracle server and the IIS run on the same machine.

    Can both the oracle server and web server (IIS) run on the same machine? operating system is XP professional.
  20. kondakindi

    connecting to oracle

    hi all, I am new to asp. I need to connect to an oracle database which is on the same system as the IIS. I wrote the following code for it <% dim conn,rs Set conn = Server.CreateObject("ADODB.Connection") conn.Open "Provider = MSDAORA;User ID=admin;Password=admin;Data...

Part and Inventory Search

Back
Top