Search results for query: *

  • Users: d2005
  • Order by date
  1. d2005

    can this be done

    i have two functions aPublic Sub refereshparent() Dim NewScript As String NewScript = "<script language=JavaScript>" NewScript = NewScript + "window.parent.location.href = window.parent.location.href;" NewScript = NewScript + "</script" + ">" If (Not IsClientScriptBlockRegistered("test")) Then...
  2. d2005

    play wav file over the internet

    hi i have a wav file that plays if a certain condition is true this works fine (on local host )and the wav file is located in my c: when the app is viewed over the web however the wav file does not play am i missing some settings here
  3. d2005

    please help

    got it working buddy thanks i am writing the value out to the parent form then back to the child form, it is a whole handlin thanks you
  4. d2005

    refresh parent from child

    NewScript = NewScript + "window.parent.location.href = window.parent.location.href;" WELL PLEASED
  5. d2005

    refresh parent from child

    yeah i have been trying it with javascript but no success as yet, thanks sudden when i get it done ill post it up and let you know ( if i get it done - lol)
  6. d2005

    please help

    i dont think i fully understand this, are there any examples online that you know of, thanks
  7. d2005

    please help

    loop of if statement i want to make a beep every time the row count on my datagrid is incremented i can count the rows as an integer no problem but i cant seem to work out how to keep this value and check if it has been incremented on page load and if it has then beep() anyone can help me...
  8. d2005

    refresh parent from child

    refresh parent from child RESOLVED hi i have a child frame containg a datagrid this passes values to textboxes in the parent form the changes do not take effect until i refresh my parent form can i pass these values and refresh the parent form i want to force a refresh on the parent form...
  9. d2005

    make datagrid real time

    i wish to make my datagrid on webform real time i want to refresh and update the datagrid only, ( not the whole page) as the user works with the datagrid my datagrid is to relay messages to certain users using a select statment to the databse this is why i want it to be in real time as...
  10. d2005

    The server rejected one or more recipient addresses

    anyone know how to set up my smtp server for sending the mail all of the emails are ending up in the badmail directory and not sending out when i do get no errors my computer thinks im a spammer
  11. d2005

    server_name, server_port

    anybody know the keywords for server_name and sevver_port i dont think they are no longer acceptable in asp.net
  12. d2005

    dynamically build table from code

    dynamically build table from code i have old asp vb script code, it seems that this code dynamically generates a table in <table> from array values, is it possible to do this in the codebenind file of the webform is it particularly complicated ( because it looks it) __________________ yeah im...
  13. d2005

    problem declaring array

    Dim arrOptFields, i, strError arrOptFields = Array("PWD", "MSISDN", "TXT", "UD", "UDH", "OADC", "REF", "TCL", "VAL", "IPCLIENT", "CAT", "SSID", "SC", "FLAGS") array is a type and cannot be used as an expression wots the story here
  14. d2005

    recieve sms from gateway

    today im going to try and recieve sms from a gateway and for my next trick, its using vb.net in asp web application if any one can help me to do this it would be much appreciated thanks im here all day
  15. d2005

    logged, whos logged, cant log

    hows it going. how do you set up that if a user is logged in noone else can log in using the same login details. i was thinking of putting a 0/1 filed in the database and then if logged in you cant login again. any one any sample codes to view whos logged in for an admin page how would you...
  16. d2005

    is anyone willing to help me with session

    a good example of what i need is this i have a table with company code drivername and driver reg i have a form with only 2 textboxes, for drivername and driver reg companycode is the username that was used to log in i want to write to the database the logged in user to...
  17. d2005

    is anyone willing to help me with session

    lol, i never get the chance to smoke too many cubans though (one of the best pictures ive ever seen) che
  18. d2005

    is anyone willing to help me with session

    if anyone knows then how to display specific info then that would be great. my webconfig --> <authentication mode="Forms" /> --> <authorization> <deny users="?" /> <! .......... <sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424"...
  19. d2005

    is anyone willing to help me with session

    using the session thats created need to understand how to create and use the session i have a login and all working but i dont know how to work with it let me know if ye want something to do and guide me through it :)
  20. d2005

    current user, databind

    even help with the update command, ive changed it to this Dim txt_msg1 As String txt_msg1 = txtmsg1.Text Dim sqlSaveMsg1 As New SqlCommand("update tb_comp_detail set msg_custom1 = txt_msg1 ;", oSQLConn) oSQLConn.Open() sqlSaveMsg1.ExecuteNonQuery() oSQLConn.Close() but get error that...
Back
Top