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

    Dynamic calling of code when SelectedIndexChanged

    Hi all Is it possible to conditionally enable a textbox depending on the value held in a drop-down list? Ideally I want the event to fire (dynamically) as the value in the drop-down list changes (not after submission to the server) Please can anyone advise me .... ? Thanks Greg B
  2. gregburningham

    Displaying an Alert Message in ASP.NET

    How do I display a simple alert in ASP.NET when the user clicks a button? Note: I don't want the alert to appear each time a different page is navigated to with forward and back .... Thanks Greg B
  3. gregburningham

    Displaying message boxes in ASP.NET

    Please could someone explain why the following code doesn't work ? - I have a workaround but it's over-complicated If (Not Page.IsPostBack) Then Me.Button1.Attributes.Add("onclick", _ "return confirm('Are you sure you want to delete?');") End...
  4. gregburningham

    Checking the Page.isValid property on the form

    Hi I am trying to conditionally display a label on screen if validation has failed on a form. For instance if a field has not been correctly entered a Summary Validator shows that field as invalid. I would also like to display a label on the page if the field is invalid. I have tried...
  5. gregburningham

    Displaying a text & linebreaks in a textfield

    Hi I am trying to write some text out to a textfield on an asp.net page. I would like the text to be displayed in one textfields as follows: - Message 1 - Message 2 - Message 3 Each string of text should be separated with some sort of line break character I assume. (I will build the string...
  6. gregburningham

    Converting type DataRow to Control

    Hi I have some code where I read a list of data items from a DataTable. Each of these rows although stored as a string is also a Control on my page. I would therefore like to convert the row.column returned from my loop into a Control that I can set properties on (such as enabled=true) etc...
  7. gregburningham

    Looping through controls on a form

    Hi all I am writing an ASP.NET application and I want to be able to set a number of controls (textboxes and dropdown lists etc.) to property "enabled = false" This is easy enough but at the moment I am doing this the slow way ie. TestedDateTextBox.Enabled = False Is...
  8. gregburningham

    Populating a DataTable from a DataReader

    Please can anyone help ? I am trying to populate a DataTable from a DataReader and not having much luck .....
  9. gregburningham

    Another question on DropDown Lists

    I would like to put in a blank line into the dropdown list but I want to avoid a query with a UNION statement in it that adds the line (with NULL values in it) ! Please could you let me know if I can do this through the code rather than through the query. I also want to use...
  10. gregburningham

    Passing a drop down list to a class and databinding

    Hi all I am having trouble doing a simple task - whilst I have managed to bind a simple drop-down list from a query in other .NET apps I have written, I have not managed to do it in a class using array lists .... This almost works but for some reason I cannot assign the values of...
  11. gregburningham

    Having trouble with .find.execute

    The object.method 'find.execute' is not working but no error mnessage is being reported ... It used to work / the code hasn't changed as far as I am aware .... (MDE file) Something must have happened to the Word installation I think / but I can't think what? Has anyone any suggestions as to...
  12. gregburningham

    LDAP authentication

    gregburningham (Programmer) Sep 4, 2002 Hi I am using vb.net code to authenticate the username and password of somebody logging onto a website using LDAP on Novell (NDS). My Windows 2000 server is reading data from the LDAP tree on Novell. Does anybody know how to do this in secure mode ...
  13. gregburningham

    LDAP authentication

    Hi I am using vb.net code to authenticate the username and password of somebody logging onto a website using LDAP on Novell (NDS). My Windows 2000 server is reading data from the LDAP tree on Novell. Does anybody know how to do this in secure mode ? (Anonymous binding seems to work !) Any...

Part and Inventory Search

Back
Top