User Profile

Collapse

Profile Sidebar

Collapse
aspkiddy
aspkiddy
Last Activity: Nov 19 '12, 02:34 PM
Joined: Jul 15 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Original message database problem while fetch entity failed

    Hi,

    Sometimes, some user have a following message error on my form (c# and I use a webService):
    Server error server was unable to processs request. Original message database problem while fetch entity failed.
    What does it mean? Can you an idea ?

    Thanks
    See more | Go to post

  • aspkiddy
    replied to How can i create image buttons?
    image button
    Code:
    <asp:ImageButton id=ImageButton11 runat="server" ImageUrl="images/button.png" ImageAlign="Middle" CommandName="click_yourCommande"></asp:ImageButton>
    or
    Code:
    <button runat="server" style="background-image:url('images/button.png')" >click on...  </button>
    or you can also use "image-hyperlink" :
    Code:
     <asp:HyperLink ID="HyperLink2"
    ...
    See more | Go to post

    Leave a comment:


  • how can I retrieve values ​​from a textBox in another screen after the user send it

    Hi,
    how can I retrieve values ​​from a textBox in another screen after the user set / send it

    In the first screen, I have a TextBox, mNombre50TextBo x, the user fills in the number of tickets they want in the textBox.the sum is displayed (by calculating with jQuery) in another textBox, mTotal50TextBox , and the total bill is in 3th (another) textBox, ,mMontantTextBo x...

    Here is my code in aspx (Front...
    See more | Go to post

  • I have a solution...

    It works

    Code:
    private FormConfirmationPageState mFormConfirmationPageState;
    
    
                
                string cost;
                int newVal;
    
    
    private void LoadLabels()
    		{
    			object FormPageState = Session["FormPage"];
    			totoForm.FormPageState s = (totoForm.FormPageState)FormPageState;
    ...
    See more | Go to post

    Leave a comment:


  • How to convert from dollars to cents (for example 22.00) to 2000 with no decimal?

    Amount text box...
    the number is positive and this field should be sent as cents ( $22.00 should be sent as 2200 with no decimal).

    How can I ?

    in my first form page (where there is a textbox/ field )

    I use
    Code:
     
    private void SetPageState()
    		{
    		 int amountInt = int.Parse(mamountTextBox.Text);
    		 mFormPageState.AmountContribution = amountInt.ToString("0.00");
    ...
    See more | Go to post
No activity results to display
Show More
Working...