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: *

  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

    Thanks Mark....thats what i was looking for. I'll use it and hopefully shouldn't run into anything.
  3. 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...
  4. ITking2009

    validations controls working server side but client side failing

    Hi, after the post i tested with the button enabled and the validations started working. The enabling and disenabling of the button using radio button is requred for this project so was wondering if anyone knew whats going on and how to have the client side validations working with this or...
  5. 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...
  6. ITking2009

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

    I found a way to do if someone knows a better way let me know. i am doing following and its working string dataPath = Server.MapPath("~/App_Data/RFS.xml"); DataSet dSet = new DataSet(); dSet.ReadXml(dataPath); DataRow[] rows = dSet.Tables[0].Select("...
  7. 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...
  8. ITking2009

    Can we modify the validation control code generate?

    The reason i am looking for this is that i need to have the background of all the text boxes which fail the required field validation to yellow background so wnated to check if i can modify the code to do that rather than having a custom validator and writting my own javascript and server side...
  9. 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.
  10. ITking2009

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

    thanks Jbenson001, i am also inclined towards using an object, but 1. How can i immitate search button click programmatically? 2. Once i store the object in session do i need to cast it back to original object or i can use it just like any other object? Thanks.
  11. 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...
  12. 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...
  13. ITking2009

    Validation on a group of controls

    ahh...i should have read you mentioned for server side dammn....Thanks for spending time with me ont his.
  14. ITking2009

    Validation on a group of controls

    Thanks Jbenson001, this is true for the server side but for the client side how do i get the validations generated? Thanks.
  15. ITking2009

    Validation on a group of controls

    all the examples i am able to find have one control tied to one validation , can you share an example where multiple controls are tied to one custom validation control. thanks.
  16. ITking2009

    Validation on a group of controls

    i tried that but couldnt figure out which control it shoudl be tied to as there are 6 textboxes and any one of them having a value should validate the page. what am i missing??
  17. 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...
  18. ITking2009

    dynamically set the label in master page depending on content page

    Thanks Jbenson001, but i dont know that for a lable how do i expose a public property? can you give me an example? Thanks.
  19. 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...
  20. ITking2009

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

    Thanks Jason for your comments. the "Start Here" was funny....

Part and Inventory Search

Back
Top