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

    request.form("") Vs request.querystring("")

    Hi, I know if you use post method in your form submission then you use request.form and if u use get method u use request.querystring but i was wondering what are the other major differences in the two in terms of performance and if i have 5 controls on the form ( a checkbox, a textbox, a...
  2. Kingkumar

    how to call asp in client side vbscript?

    Hi , It might be answered before but i couldnt find it in search so started a new thread. The problem i have is i have a bunch of list boxes and when user clicks on submit button witha client side script(vbscript) i am checking whether user has mades any/what selection and if he has not...
  3. Kingkumar

    modal window opening another modal window

    Hi, I have a modal window in which i have a list box and onchange event of list box i submit the form to the same page. Now the problem i am facing is that it opens another modal window when i do so. following is my code can some one tell me what i am doing wrong. Thanks -King <%@...
  4. Kingkumar

    How to convert a string of number into integer value

    Hi , I have a string of numbers eg(1,2,3,4,5) which i pass to my stored pocedure as varchar ( @agentid shown in code below) now the problem i am facing is that agentid is int so it throws an error. can some one tell me how to convert this string to int type or is there a different way of sendig...
  5. Kingkumar

    Cannot find server or DNS Error

    Hi, We have a website on the intranet. lately while testing an asp page from the IDE (interdev 6) i got following error "Not sufficient memory available to perform the operation" so i logged into the server and tried to restart iis but i got the message access denied. so i cancelled the...
  6. Kingkumar

    How to pass a variable to modal window and retrieve in modal window

    Hi, In my asp page i am using following javascript if (strRmvAgtLst.length > 0) { window.showModalDialog("ProxyDetails.ASP", strRmvAgtLst, "dialogHeight:550px;dialogWidth:700px;center:yes;help:no;resizable:yes;status:no") } i am passing the variabe strRmvAgtLst while opening modal...
  7. Kingkumar

    How to open a modal window with form and submit it to itself

    Hi, I need help to do the following as i dont know how to go about it 1. on button click open a modal window 2. modal window has a form with drop down which shoudl have data as what selected in the listbox (multiselect) in the main form 3. when the data is selected in themodal window and submit...
  8. Kingkumar

    How to manipulate data while dts is exporting to sql server from excel

    Hi, I have few excel sheets which i need to export to sql and then run sql queries/commands and output the final result. But now the problem i am facing is one of the columns in sql excepts no null values but some of the sheets have some rows in that column as null. because of which the dts...
  9. Kingkumar

    Error Not enough storage is available to complete this operation.

    Hi , i dont know hwat did i do ??? i connect to server running iis 5.0 . Everything was working fine suddenly even for pages which were working fine it started giving following error. Not enough storage is available to complete this operation. how can i check whats wrong? also how to rectify...
  10. Kingkumar

    NextRecordset() returns empty recordset

    Hi , what i need to do is have two select statemetns in a stored procedure and display the results in two different listboxes. the problem i am facing is that its getting all hte records as required but wehn i try the second list box is always empty ( i have the sql in query analyzer ) Is...
  11. Kingkumar

    Persistent cookies

    Hi , I wanted to know how to create permanent cookies so that the information is not deleted until user desires too i know one way is to Response.Cookies("name").Expires = date() + 365*5 which i found in one of the forums but is there any other way also what does this mean Response.Expires =...
  12. Kingkumar

    How to filter data in a drop down based on selection in other dropdown

    Hi, I am new to asp so please excuse my silly questions. I need to have 3 drop downs on my asp page and the data in the drop down should be filtered based on the selection in the above drop down. eg. Until user selects something from dropdown 1 nothing should be displayed in drop down 2& 3 and...
  13. Kingkumar

    Crystal reports Vs SQL Reporting services

    Hi, Anyone knows the difference b/w the two crystal reports and sql reporting services for web based reporting ? I am asking because the crystal reports are quiet expensive whereas the sql reporrting services are free:) Thanks. --king
  14. Kingkumar

    Crystal reports difference in Advance, Developer & Professional

    Hi , I was wondering how much functionality wise and cost wise difference in Advance and Developer version of crystal report 9.0? I need to order the software for my company and was wondering which one of the 3 is the best option (cost + functionality ) tradeoff Thanks --King
  15. Kingkumar

    Is Client Tool Crystal reports required when accessing from web?

    Hi I am totally new to crystal reports. I have been asked to use crystal reports for one of my web reporting projects and i have to clue how to go about it. First question i have is ihave been told that cyrstal reports is installed on one of our company webservers so to access it during...
  16. Kingkumar

    DTS package invalid datatype conversion error

    Hi, I have a dts package to import the data from an excel file into the sql server table. It was working fine until ihad this new sheet and now it has started throwing error "TransformCopy 'DTSTransformation_1' conversion error: General conversion failure on column pair 1 (source column 'Agent...
  17. Kingkumar

    Good book for 70-229

    Hi , I am planning to take 70-229 exam and was wondering if someone could suggest me a good book for it (or some websites for 70-229) my main goal right now is to PASS THE EXAM . Thanks. --king
  18. Kingkumar

    exporting data from excel sheets to one table

    Hi, I'm new to DTS packages and what i need to do is to migrate data from 10 excel sheets of the same workbook into a single table . Now the question i have is that whether i need to create 10 different transform data task to achieve this or there's a simple way Also if i have to do same sheets...
  19. Kingkumar

    Outer Join syntax

    Hi, I am new to sql so not sure whether using outerjoin for the following scenario is a good idea or should use some other method. I have two tables one has columns SSN, Lastname, firstname, sales and the second table has columns SSN,Lastname,Firstname , City. Now i have data in tables THere are...
  20. Kingkumar

    How to add counter column dyanmically

    Hi, I need to query a table and do some calculations on it and then display the data in ascending order based on a particular column (this part is easy and i got how to do it:)) now the problem i am facing is that i need to display the data in descding order along with an additional column...

Part and Inventory Search

Back
Top