[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.8

Creating web server control and working with postbacks

Asked by xersoft in Programming for ASP.NET, Microsoft Visual Basic.Net, .NET Framework 2.x

Tags: asp.net 2.0

Id like to create a web user control that inherits from System.Web.UI.WebControls.WebControl.

I implement IPostbackDataHandler

In the RenderContents method, I do the following


writer.AddAttribute(HtmlTextWriterAttribute.Name, Me.UniqueID & "$test")
writer.AddAttribute(HtmlTextWriterAttribute.Id, Me.ClientID & "_test")
writer.AddAttribute(HtmlTextWriterAttribute.Type, "textbox")
writer.RenderBeginTag(HtmlTextWriterTag.Input)


writer.AddAttribute(HtmlTextWriterAttribute.Name, Me.UniqueID & "$test2")
writer.AddAttribute(HtmlTextWriterAttribute.Id, Me.ClientID & "_test2")
writer.AddAttribute(HtmlTextWriterAttribute.Type, "textbox")
writer.RenderBeginTag(HtmlTextWriterTag.Input)

Notice the name of each textbox.

My implementation of the IPostbackDataHandler interface is as such:

    Public Function LoadPostData(ByVal postDataKey As String, ByVal postCollection As System.Collections.Specialized.NameValueCollection) As Boolean Implements System.Web.UI.IPostBackDataHandler.LoadPostData
        Stop
    End Function

    Public Sub RaisePostDataChangedEvent() Implements System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent
        Stop
    End Sub

Very simple, just stopping the app when I click a button NOT contained in the user control.

The question is why does this not work? Why when I place this user control on a web form along with a button and run it do I not hit either of those methods when I click the button.

While looking at examples I noticed that the name of the child controls, the textboxes in this case, need to be named me.UniqueID. So I did this for one of the text boxes and reran the project. When I clicked the button NOT in the user control the LoadPostData method was run.

So I changed the second textboxs name to me.UniqueID and ran the example. It worked fine but the value found in the postCollection was a concatenated string containing both values found in the text boxes.

I dont understand how to create server controls that have multiple textboxes, which responds to post backs raised by unrelated submits.

The underlying question is how does one create server controls that rely only on the render method to output the underlying HTML but have the ability to respond to postbacks?

Thanks you for any help that can be offered.
[+][-]08/12/07 06:05 AM, ID: 19679016Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Programming for ASP.NET, Microsoft Visual Basic.Net, .NET Framework 2.x
Tags: asp.net 2.0
Sign Up Now!
Solution Provided By: DropZone
Participating Experts: 1
Solution Grade: A
 
[+][-]08/30/07 02:35 PM, ID: 19804398Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091118-EE-VQP-93 / EE_QW_2_20070628