sendAndLoad and asp.net page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jmatt002
    New Member
    • Oct 2008
    • 3

    sendAndLoad and asp.net page

    Hello,

    I am a .net developer. I have inherited a asp.net 1.1 visual basic application that has a web page that hosts a flash presentation. When the presentation completes there is an actionscript that makes the following call:

    var result_lv:LoadV ars = new LoadVars();
    var send_lv:LoadVar s = new LoadVars();

    send_lv.sendAnd Load("Orientati onComplete.aspx ?UserID="+_root .strUserID+"&Re sult=true", result_lv, "POST");


    This call works in that I can hit a breakpoint in the Load() of OrientationComp lete.aspx and update a database.

    I cannot make OrientationComp lete.aspx render however. I can also see the http for OrientationComp lete.aspx in Fiddler but the page never appears. I want to have the user enter something on OrientationComp lete.aspx.

    Any idea why OrientationComp lete.aspx does not render?


    Thank you!

    jmatt
  • joedeene
    Contributor
    • Jul 2008
    • 579

    #2
    Hey,

    I've searched Google, and I found another forum that you are registered under and have asked the same question, if the advice the other member on that forum gave you works let me know, if not I will try and help you furthermore.

    joedeene

    Comment

    • jmatt002
      New Member
      • Oct 2008
      • 3

      #3
      I am going to work on it today and will let you know. Thanks for you help.

      Comment

      • jmatt002
        New Member
        • Oct 2008
        • 3

        #4
        This does what I need,

        Code:
        var result_lv:LoadVars = new LoadVars();
        var result_lv:LoadV ars = new LoadVars();
        var send_lv:LoadVar s = new LoadVars();
        send_lv.send("O rientationCompl ete.aspx?UserID ="+_root.strUse rID+"&Result=tr ue", "_blank", "POST");

        Thanks!

        Comment

        Working...