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

    .net Equivalent of MSXML2.XMLHTTP40

    I am working on converting a VB6 app into C# app. Here what i need to do Public Function SendData(sUsername as string ,sPassword as string, url as string , message as string ) As Boolean Dim XMLHttpRequest As MSXML2.XMLHTTP40 Set XMLHttpRequest = New MSXML2.XMLHTTP40...
  2. ITking2009

    xmlhttprequest in asp.net

    hi, I need to convert a vb6 app to c#/asp.net application. One of the functions in that app is to send an xml to a server. I didnt know how to proceed so thought of checking with the experts Here' the vb code Set XMLHttpRequest = New MSXML2.XMLHTTP40 XMLHttpRequest.Open "GET", g_FeedURL...
  3. ITking2009

    validations controls working server side but client side failing

    Hi, I am having a strange issue. I have couple of text boxes for which i have required field validators. I have a button to submit and this is supposed to cause validations. The issue i am seeing is that these validations are not happening on the client side but on the server side for the first...
  4. ITking2009

    display specific data from read from xml file on asp.net page

    Hi, What i need to do is display a specific section of the xml file on the webpage. Here's what i am doing i am reading the xml file into a dataset and then check for row count and if its more than one i am tying to the table. the issue i am having is it showing correct count but when i try to...
  5. ITking2009

    Can we modify the validation control code generate?

    Hi, Is it possible to modify the code generated for validation control on client side and on server side? If yes where can i find that code? Thanks.
  6. ITking2009

    how to save search results so user can return from any detail page

    Here's what i am trying to do. I need to create a page which has 6-7 text boxes for various search criteria and user can enter either one or more than one search criteria. The same page displays the results of the search (orders) with hyperlink to details page for each ordernumber. I am able to...
  7. ITking2009

    global functions like what we had in classic asp

    Hi, Coming from classic asp i am not able to figure out whats the right way to do this so any guideance is appreciated. What i want to achieve is, like in classic asp we used to create functions in global.asa; for functions which would be called by various pages, Is that somethign what is...
  8. ITking2009

    Validation on a group of controls

    Hi, Here's what i need to do, i need to make sure that the user has entered something in atleast one of the 6 text boxes before they are taken to another page on the website after the submit button is clicked. i used to do the same using client side javascript in classic asp so trying to...
  9. ITking2009

    dynamically set the label in master page depending on content page

    Hi, Here's what i want to achieve I have a master page which has to display the page we are on (content page) somewhere on the master page. For example if we are on login page it should display login, if we are on feedback page the master page should display feedback etc. I tried using label...
  10. ITking2009

    how can i encrypt data in an xml file and read via asp.net page

    Hey, One of the requirements is to read the user and password from the xml file. I can do that but i dont want the password to be clear text so my question is 1. how can i encrypt the password in the xml file 2. How can i read it and compare with password entered by the user? Any directions or...

Part and Inventory Search

Back
Top