Search results for query: *

  1. C

    Page Refresh deleting values

    Hi, I am using a web form which has a few text boxes and and button with a popup calendar, the only way i can transfer the value from calendar to the main webform is to use a session variable and then refresh the page and assign the value in the page_load event. However once the page is...
  2. C

    firing selectindexchanged

    Hi Kulrom, Thanks for getting back to me, i've basically done what you have said and called the selectindexchanged and it works, so for now i'm happy with that, although not the most elegant solution.... Thanks for your help
  3. C

    firing selectindexchanged

    Apologies if this is the wrong forum... The autopostback is set to true as when i click the first dropdown list the second is populated so that works fine... What i would like to know is how to fire the selectindexchanged event from code. A procedure runs dropdownlist1.selectedindex = 3 so...
  4. C

    firing selectindexchanged

    Guys, can you tell me how to fire a selectindexchanged event from code. I have a sub procedure that changes the selectedindex value of dropdown1, i've been told that changing this value won't fire the selectedindexchanged event(which it doesn't!). it will fire if i click the ddl (which...
  5. C

    If statement help...

    Hi, Unfortunately I can't, i'm using terminal services and my sys admin doesn't know why even though i am a member of the debuggers group can't actually debug! You don't realise how valuable debugging is unless you can't use it...!
  6. C

    If statement help...

    Hi, Wondering if anyone can tell me what i'm doing wrong here... Dim username As String Dim input As String sql = "select username from tbluserDetails where username = " & Me.txtUsername.Text da = New SqlClient.SqlDataAdapter(sql, myConn)...
Back
Top