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 SkipVought 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
  • Order by date
  1. Kingkumar

    how to call asp in client side vbscript?

    THANKS sheco , also why did u asked about the third form being submitted by button??/ Lemme know thanks for your time and help --King
  2. Kingkumar

    how to call asp in client side vbscript?

    yeah thats right . Also i have one more question . is there a way to pass the variable in client side script to server side script ?? Thanks king
  3. Kingkumar

    how to call asp in client side vbscript?

    Hi Sheco, Just to give you the picture of what i am doing ... i have three forms 1st form has a dropdown which on change submits that form using get method and the page is redisplayed based on the selection in this form 2nd form has another drop down and on changeevent this form is submitted...
  4. Kingkumar

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

    Thanks a lot guys for your input. just to make sure that i understood correctly apasrt from url appending( of course the size of querystring) there is no major difference in the two methods I can access all the controls using either of the methods. It doesnt matter if i use get method and use...
  5. 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...
  6. Kingkumar

    how to call asp in client side vbscript?

    yeah something like that. I thought it would be easier and simple to submit the form to itself instead of sending to someother asp page and then bringin back to the same page. I dont know whether i am thinking in the right direction or not Please let me know thanks.
  7. Kingkumar

    how to call asp in client side vbscript?

    i understand what you mean sheco but the question i had was that i saw one example in javascript where the user on submit was calling a javascript function whcih checked for some stuff and later in the function it checked for an if... clause and in the if condition it had asp code as <% '...
  8. 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...
  9. Kingkumar

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

    Thanks guys, allan thanks for your time and suggestions they were of great help
  10. Kingkumar

    modal window opening another modal window

    Thanks tony, but i figured out it does that and there are couple of ways how u can avoid it shown int he following link its for asp.net though but concept remains the same http://www.experts-exchange.com/Web/Q_20832231.html
  11. Kingkumar

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

    chopstik i am not working with asp.net i am working with classic asp but the concept remains the same thats why i referred to it. and following one of the methods there my modal window is no more opening any windows thanks for your help though it was very nice of you.
  12. Kingkumar

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

    For the ppl who are get frustated like me here is the solution to the above problem http://www.experts-exchange.com/Web/Q_20832231.html
  13. Kingkumar

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

    i found this in one of the threads so was wondering how reliable it is http://www.tek-tips.com/viewthread.cfm?qid=446330 lemme know thanks
  14. Kingkumar

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

    onchange i call a function fncTransfer the code for function is as follows function fncTransfer() { //alert("test"); document.frmProxyAgent.submit() return true; } but still opens a new window
  15. Kingkumar

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

    OK Guys i am on the verge of brakedown now :) here is the code for calling the modal window function GetProxy() { strRmvAgtLst = setForm(document.frmAssignRec.selAgtRmvList) //alert(strRmvAgtLst) var strUrl = "CopyOfProxyDetails.asp?list=" strUrl = strUrl + strRmvAgtLst if...
  16. Kingkumar

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

    Hi Allan, i cant open it directly in the browser because the dropdown gets populated by one of the values passed from the previous page. Also tried targer ="_self" but it still opening a new window going nuts as cant find naything in the code which might cause it to open a new window:( any...
  17. Kingkumar

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

    hey chopstik, i forgot to mention proxydetails.asp itslef is opened using javascript function and window.showModalDialog I dont know if that makes a difference??? let me know if you think that might be the reason or if u see something in the code. thanks for your help --king
  18. Kingkumar

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

    The problem i am facing is that when i submit the modal form to itself it opens another modal window with the old modal window still existing here is my code <%@ Language=VBScript %> <% Option Explicit on error resume next Response.Buffer = true Response.Expires = -1 dim strMarket, conn...

Part and Inventory Search

Back
Top