User Profile

Collapse

Profile Sidebar

Collapse
Mahill
Mahill
Last Activity: Jan 18 '07, 06:24 PM
Joined: Jan 18 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • I appreciate the response. Actually, my problem was simply that I was not submitting the .ASPX page, but merely hyperlinking to the .PHP so since nothing was submitted, no values were being read....
    See more | Go to post

    Leave a comment:


  • Code:
        <form id="frmDefault" runat="server" method="post">
    ... other stuff
        </form>
    The form code is in a .master file that is used by the .aspx file. Do I need to post that as well?

    I guess generally I was asking if this was even a possibility. I really do not want to use querystrings, but if there is no other way, I have no choice....
    See more | Go to post
    Last edited by Mahill; Jan 18 '07, 05:14 PM. Reason: Clarification

    Leave a comment:


  • Code:
    <?php
    include '../includes/pdf/class.ezpdf.php';
    
    $c_fullName=(empty($_POST['hidFullName'])) ? "" : stripslashes($_POST[hidFullName]);
    $c_ownPerct=(empty($_POST['hidOwner_T'])) ? "" : $_POST[hidOwner_T];
    $c_SSN=(empty($_POST['hidSSN_T'])) ? "" : $_POST[hidSSN_T];
    $c_address=(empty($_POST['hidAddress'])) ? "" : stripslashes($_POST[hidAddress]);
    $c_city=(empty($_POST['hidCity']))
    ...
    See more | Go to post

    Leave a comment:


  • Mahill
    replied to drop down and calendar
    in .NET
    [CODE - dropdown issue]
    Protected Sub commdrop_Select edIndexChanged( ByVal sender As Object, ByVal e As System.EventArg s) Handles commdrop.Select edIndexChanged
    Try
    label.text = "message"
    Catch ex As Exception

    End Try
    End Sub

    Protected Sub sitedrop_Select edIndexChanged( ByVal sender As Object, ByVal e As System.EventArg s)...
    See more | Go to post

    Leave a comment:


  • Mahill
    started a topic Retrieve POSTed .NET control values in .PHP page
    in PHP

    Retrieve POSTed .NET control values in .PHP page

    I have values in a .ASPX page that I would like to pass and retrieve in a .PHP page. I am using $_POST[controlname], but it is not retrieving any of the values. What am I doing wrong?

    BTW - The values I want to retrieve from the .ASPX are .NET controls. I have even written the values into conventional hidden controls (input type="hidden") but still no values are being retrieved in the .PHP page. All values are contained within...
    See more | Go to post

  • Mahill
    started a topic Pass .NET Control Values to PHP page
    in .NET

    Pass .NET Control Values to PHP page

    I have values in a .ASPX page that I would like to pass and retrieve in a .PHP page. I am using $_POST[controlname], but it is not retrieving any of the values. What am I doing wrong?

    BTW - The values I want to retrieve from the .ASPX are .NET controls. I have even written the values into conventional hidden controls (input type="hidden") but still no values are being retrieved in the .PHP page. All values are contained...
    See more | Go to post
    Last edited by Mahill; Jan 18 '07, 02:55 PM. Reason: Grammatical correction
No activity results to display
Show More
Working...