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: rambleon
  • Order by date
  1. rambleon

    can I use more than 1 charset on an aspx page

    I have an aspx page displaying forms containing Hebrew Dos text - Ansi char values 128 - 154. Using Response.Charset = "iso-8859-8" the Hebrew text displays OK but all the other Hebrew text on the controls comes out as gibberish (urecognizable). Is there any way of limiting the Charset set just...
  2. rambleon

    can ftp (or something else) replace this pcanywhree

    Hi, I would like to know if it's possible to replace the following pcanywhere (ole) session with ftp. 1. Remote calls waiting host (modem) 2. Files transfered from remote to host 3. Remote calls batch file on host to execute. 4. When execution on host completes the output files...
  3. rambleon

    Is it possible to disable the Back and Forward navigation buttons

    I agree it's not very user freindly, but how can I ensure that the login page does not contain the previous persons login info.
  4. rambleon

    Can I avoid the Encoding that vs.net imposes on every page

    Is it possible to avoid the Encoding that VS.net imposes on every page, so that input and output remain the same - if I hand code the page everything is OK. Or alternitavly is it possible to have more than 1 charset per page?
  5. rambleon

    Is it possible to disable the Back and Forward navigation buttons

    Sorry I should have been more clear. Hitting the back button returns me to the login page which contains the previous login info, which I want to avoid.
  6. rambleon

    Is it possible to disable the Back and Forward navigation buttons

    I would like to have control over which forms the user goes to from within my application. Can I disable the back and forward buttons?
  7. rambleon

    Hitting the Back button does'nt return the previous form the way I lef

    In what state is the previous form returned when I hit the Back button? In Form1 I have a LinkButton that does the folowing: Hyperlink1.Visible = False Textbox1.text = "" Textbox2.text = "" Response.Redirect("Form2.aspx") When I hit the Back button in...
  8. rambleon

    dropdownlist returns incorrect item

    Thanks Jim, I've been breaking my head for a week over this, so obvious but you're the first to point it out. Actualy seems more logical that the textfield values should be unique.
  9. rambleon

    dropdownlist returns incorrect item

    What could be the reason that only the first 2 items in a dropdownlist work correctly. Clicking any other items either returns the 2nd item (SelectedIndex(1)) or nothing.
  10. rambleon

    Dropdownlist SelectedIndex returns incorrect value

    I tried what you suggested the 1st and 2nd items return the correct value all other items return the value for the second item or nothing.
  11. rambleon

    dropdownlist selectedindex incorrect

    Rick could you please expand on 'maintains state', I'm new to this. I've posted the code in the asp.net forum if you're intrested.
  12. rambleon

    Dropdownlist SelectedIndex returns incorrect value

    Here's the relevent code: Imports System.Data.OleDb Imports System Imports System.IO Public Class TlushFrm Inherits System.Web.UI.Page Protected WithEvents Button1 As System.Web.UI.WebControls.Button Protected WithEvents TlushDate As System.Web.UI.WebControls.DropDownList...
  13. rambleon

    Dropdownlist SelectedIndex returns incorrect value

    Hi, I have a dropdown list with 6 items, clicking the first item is ok - SelectedIndex = 0, clicking any other item the SeletedIndex = 1. I have the loading and binding for the dropdownlist in a If Not Page.IsPostBack block. Any ideas ?
  14. rambleon

    dropdownlist selectedindex incorrect

    Rick, The loading and binding is in a - If Not Page.IsPostback block. The code only works for the 1st and 2nd items in the list (SelectedIndex = 0 or 1)
  15. rambleon

    dropdownlist selectedindex incorrect

    Hi, I have a dropdown list with 6 items, no matter which one of the items I click the SelectedIndex changes to 1. Any ideas?
  16. rambleon

    How do copy ansi text from a file to an html page without any changes

    Hi, Is there any way to read data from a file and then output an exact copy of that data byte for byte to an html page. Response.Write(objStreamReader.ReadLine()) Can someone please send me a replacement for the above so that I can copy the input to output without any encoding interference...
  17. rambleon

    How do I convert a string from 1 character set to another

    Thanks Bob, For the explanation, I'd been trying to find a solution using RegEx, now I understand why I didn't find one. Cobol's my mother tongue, in the dialect I use the verb is TRANSFORM. Till now I've been using Cobol to generate web pages, this is my first foray into ASP and Visual Studio...
  18. rambleon

    How do I convert a string from 1 character set to another

    thanks bboffin that's fine, but I was wondering if there was a way of proccessing the whole string using RegEx or StrConv to replace characters
  19. rambleon

    How do I convert a string from 1 character set to another

    Hi, I have a text file which I want to read and display in a browser, to display the text I have to convert the character set from hexadecimal values 80 - 9A to E0 - FA, bascicaly adding 60 (hex) to each charater before displaying it in the browser, what would be the best way to convert the...
  20. rambleon

    My asp.net app doesn't see new records added to access 2000 database

    Sorry you're quite right. Here is the function I use to read the records: Function Authenticate(ByVal strUserID As String, ByVal strPword As String) As Boolean Dim objConn As New OleDbConnection(ConfigurationSettings.AppSettings("DSN")) Dim objCmd As OleDbCommand Dim...

Part and Inventory Search

Back
Top