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

    XML post decoding problem

    Hi, I am able to finally receive an xml post into my asp.net 1.1 c# application. An external server (another language) posts the XML it using an HTTP post. The directions also say that they use form encoding. Anyway, I am having lots of trouble decoding the xml that i am receiving. I have tried...
  2. romh

    Cannot read xml attribute

    Hi. I am trying to read the value of an attribute, in an XML file. Its a very simple xml file. <?xml version="1.0"?> <product type="Tile"> <name>3ba01</name> <pattern>rojo</pattern> </product> I can get both name and pattern. I cannot for the life of me, get the product type attribute...
  3. romh

    XML over HTTP Post

    I need to write code to grab xml elements out of an xml file. that's easy and have done it a million times. But, the xml file is coming from another application onto my web server via an HTTP POST. I am not sure how to do this. I have never done this before. It's not a webservice. Any help? Thanks
  4. romh

    Checkbox Groupname?

    Hi. Is there a way to make a checkbox behave the same way that you would create a radiobutton group? I need a series of checkboxes in which only 1 can be selected. 1 idea that comes to mind is to use the checkboxes OnCheckedChanged to clear any other checkboxes that could be checked. Is that...
  5. romh

    Why would you place asp.net code inside HTML?

    I have a question. Is there an advantage to placing c# code inside the html section of an aspx file instead of in the code section? I am talking about including some c# code with the <% %> --------------------------------- Ex: <% if (x > 3)%> <a href="xxx.aspx?action=action1">...
  6. romh

    Hosting 2 Web Sites with 1 IP

    Hi, I've read all there is to read about configuring multiple web sites with 1 Ip. But I still cant seem to get it to work. I read this thread. http://tek-tips.com/viewthread.cfm?qid=947343 I have windows 2000 adv server. I can run the original site just fine, but not the 2nd one. I added...
  7. romh

    Install Web Server on new Server that is not DC

    I have been running a Windows 2000 Adv Server DC, that acts as a web server, database server, mail server and file server. It does everything, DNS, Wins, etc... The DHCP is done by the hardware router. Anyway, I never used to get much traffic at all from the web server, but now, it will be go...
  8. romh

    No Bootable Devices Error

    Hi, I have a Dell Laptop with Windows Xp and I cannot boot it. I cant even press F8 to get to safe mode or anything. I get the following error No Bootable Devices. Press F1..... etc...... I tried booting with the Windows OEM CD, and I chose the option of doing a repair install, it copied...
  9. romh

    Having trouble making keypress work

    I have tried everything. I'm not a javascript expert by any means, but i was wondering if you guys could look at my code and tell me why the keypress isnt working. It works fine on Netscape and Firefox, but not on Internet Explorer. I am trying to fire the keypress event on an asp.net textbox in...
  10. romh

    Have a problem getting keypress to work

    I have tried everything. I'm not a javascript expert by any means, but i was wondering if you guys could look at my code and tell me why the keypress isnt working. It works fine on Netscape and Firefox, but not on Internet Explorer. I am trying to fire the keypress event on an asp.net textbox...
  11. romh

    SSL

    I designed a web site which consist of a series of pages. Somebody is of the idea, to make all pages secured with SSL. Not all pages need to be secured. There's only 1 out of the 6 pages which grab credit card information. Is this a good idea, or is it better to just have the credit card page...
  12. romh

    Losing Session Variable on Page Post Back

    Ok, here is my problem. I have a series of pages which depend on a session variable. This session variable is created from an integer identity field in the sql server 2000 database table. After the 1st page, each subsequent page reads this session variable at the beginning of each page. The...
  13. romh

    How to tab from one text box to another via code

    I need to tab over via code from one text box to another once the maxiumum number of characters have been reached in a certain text box. I have searched but haven;t found anything. Thanks alot.
  14. romh

    How to populate fields without runat=server tag

    I need to populate certain text fields that are not inside the form runat="server" tag. Is this possible in asp.net? And I can;t have these form fields in the query string either. I am trying to send this form with these fields to my credit card gateway. But if I include these fields within the...
  15. romh

    How to post forms correctly

    I am creating an .aspx page that displays a summary of all the collected information from a user, which then posts to a credit card gateway. I need 2 form tags: <form runat="server"> </form> and <form> action="https://secure.linkpt.net/lpcentral/servlet/lppay" method="post"> </form> i'm...
  16. romh

    How to Skip Validation when Certain Button clicked?

    Hi, I have form validation in an aspx page. Everything works fine except that in this page (its the page where he puts first name, last name etc...), I include a button which allows the user to go back and change the item (shopping cart item) that he has chosen. If the user has not filled the...
  17. romh

    Valiadtion Qeustion

    Hi, I have form validation in an aspx page. Everything works fine except that in this page (its the page where he puts first name, last name etc...), I include a button which allows the user to go back and change the item (shopping cart item) that he has chosen. If the user has not filled the...
  18. romh

    Index Question

    I have table called tblReports. Fields: 1) ReportNum (int Identity field)(Clustered Index) 2) Date (datetime) 3) etc.... I have a 2nd table called tblReportDetails. Fields: 1) Autos (int, which is the identity field) 2) ReportNum...
  19. romh

    SSH Question

    I was reading this article from mysql.com http://www.vbmysql.com/articles/security/gui-tunnel.html it deals with using ssh instead of leaving port 3306 open. I have been leaving 3306 open in order to use query browser from an outside IP address. I am unclear about something in this article...
  20. romh

    Forms Authentication Timeout Clarification

    I found this definition of timeout from this site http://www.ondotnet.com/pub/a/dotnet/2003/01/06/formsauthp1.html This is the amount of time (in integer minutes) that the cookie has until it expires. The default value for this attribute is 30 (thus expiring the cookie in 30 minutes). The...

Part and Inventory Search

Back
Top