Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6787645
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:23:28+00:00 2026-05-26T17:23:28+00:00

Is it possible to set the value of a property inside the page class

  • 0

Is it possible to set the value of a property inside the page class using jQuery? I know it’s possible to get the value in jQuery as long as the property is public but can’t seem to set the value.

This is the property in the code behind.

Private inventory_item_id As String = ""

Public Property InventoryItemId() As String
    Get
        Return inventory_item_id
    End Get
    Set(ByVal value As String)
        inventory_item_id = value
    End Set
End Property

<%=Me.InventoryItemId %> = 'some value'; isn’t working.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T17:23:28+00:00Added an answer on May 26, 2026 at 5:23 pm

    First things first, you should know that <%=Me.InventoryItemId %> substitutes the actual value when the page is rendered (view source on the page in your browser you will see the id, say 1234, not a reference to the property). That being said, you could set the value of a hidden field on the client side which you could then read during postback and use to set your property. Note that the answer “no” is technically correct – the property no longer exists once the page has been rendered – but there is nothing stopping you from setting it again during the postback.

    In fact, your could make your property directly tied to a hidden field:

    Public Property InventoryItemId() As String
        Get
            Return hdnInventoryItemId.Value
        End Get
        Set(ByVal value As String)
            hdnInventoryItemId.Value = value
        End Set
    End Property
    

    Which assumes that you have the following hidden field defined:

    <asp:HiddenField ID="hdnInventoryItemId" runat="server"/>
    

    Finally, your jQuery could set the field with the following syntax (but this is just one of many, many ways it could be set):

    $('<%= hdnInventoryItemId.ClientID %>').val('some value');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Can I set a property value with Reflection? How do I set
Is it possible to set attribute value [] for class or property based on
Let's say I have a class with a public property inside, like this: class
consider the following class: public class ShortName { public string ValueString { get; set;
Is it possible to set value of property defined at C# to javascript... c#
In an applicationcontext.xml, is it possible to set a value which can be used
Is it possible to set the value behind a two-way binding directly, without knowing
Is it possible to set the value of an auto-increment field? If a record
is it possible to set a specific Value for the cookie, before fetching a
Is it possible to set one object's key $thumbnailContainer to the value of another

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.