Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: LV
  • Order by date
  1. LV

    MVC - get an unbound ViewModel property back to controller

    I have a complex type property on my ViewModel. This property is not bound to any control on the View; however, when the ViewModel is posted back to the controller, I still need a handle to this property. Currently is coming back as null, and I'm wondering what would be the best way to persist...
  2. LV

    Chart padding

    I'm trying to supperss the left and right padding on the chart and don't seem to find a respective property on neither chart area nor chart itself. Would appreciate the tip.
  3. LV

    Total on a TopN group

    Thanks for the reply and provided link. This behaivior seems kind of strange, I would still expect a group to aggregate on its filtered subset, not the entire report dataset, but oh well. I ended up modifying the MDX query to return the top N and agregated "others" records. Seemed like a cleaner...
  4. LV

    Total on a TopN group

    I have a report that has two groups, first is filtered by top 20 values, and second is filtered by bottom N on count(idField, "dataset") - 20 - in other wordsm, the rest of the dataset fields. The data displays as expected, however, adding total sum on both groups displays total for the entire...
  5. LV

    TextChanged cancels Click event

    Yeah, same here. Events wired up correctly, double checked. Will keep searching for the solution, thanks for your help.
  6. LV

    TextChanged cancels Click event

    Jason, Thanks for the reply. The textchanged handler makes a web service call and fires an event that the parent page subscribes to, to pass some info to it and works just fine when I make a text change and tab out of it. When the button is clicked immidiately after changing text in the box...
  7. LV

    TextChanged cancels Click event

    I have a user control with text box and button, both wrapped into an UpdatePanel. The text box has AutoPostBack=true and OnTextChanged handler in the code behind. When the text in the text box is changed and then the button is clicked, the TextChanged handler will execute but Click event on the...
  8. LV

    using HTTPContext in web farm environment

    Thanks Colin, I thought so - since the client cookie is looked up to detect authentication, it shouldn't depend on what server it goes to. Thanks for the confirmation!
  9. LV

    using HTTPContext in web farm environment

    I was wondering if thre is a down side (if poissible at all) in usirelying pn Context object in a web farm environment. In the current application hosted on a single web server, a pretty standard techique is used inside of the Application_AuthenticateRequest handler of an HTTP module to recreate...
  10. LV

    Global.asax & Application_AuthenticateRequest event

    Hey Colin, Good hearing from you! I just figured that this is the Casini vs. IIS issue by configuring the web site in IIS and simply running it. Your explanation makes perfect sense, as usual. Thanks man!
  11. LV

    Global.asax & Application_AuthenticateRequest event

    ASP .Net 2.0 web application, one simple Default.aspx page with one image button in it: <asp:ImageButton ID="imb" runat="server" ImageUrl="~/images/myImage.gif" /> Strange thing happens; in Global.asax, the Application_AuthenticateRequest fires twice when the page loads: first time with...
  12. LV

    Deserializing nullable types

    Hey Colin, Same place to meet, huh? Yes, I ended up with runing an XSL transform on the XML before deserializing in order not render elements that correspond to the nullable properties in the class - that seems to be the only way.
  13. LV

    Deserializing nullable types

    I know it's a known issue, and the solution is to change ptoperty type to string. I would hate to do that and hopefully someone knows a workaround. Trying to derserialize an XML to a class that has a nullable DateTime property. It's all good when the xml doesn't contain a corresponding element...
  14. LV

    soap header error

    vbkris, thanks for the reply. Apparently, the calling client had to apply code changes to their code to account for rpc vs. document style and the problem was solved.
  15. LV

    ASP .Net 2.0 web service - how to emit style=&quot;document&quot;

    We have a Web Service developed in ASP .Net 2.0; apparently, it doesn't emit style="document" on the binding transport node of the WSDL. Is there any way to force ASP .Net to emit this attribute?
  16. LV

    soap header error

    vbkris, Thanks for your reply. I similated their request by sending the recieved envelope to my service and get the same error. The question is: what do I need to change in my service to be able to recieve their requests since it's generated by their IDE based on my wsdl?
  17. LV

    soap header error

    We developed a simple web service (.Net 2.0), authentication works fine when this service is called from an internal test client application - able to to get userid and password from the soap header and authenticate the user. However, when same service is called by a third party, the userid and...
  18. LV

    filling dropdown with nonbound values

    myDll.Items.Add(new ListItem("Yes", "1")); myDll.Items.Add(new ListItem("No", "0"));
  19. LV

    DataList formatting question

    Almost the same idea, although it seems more complex and I need to try your way as well: <asp:DataList> <HeaderTemplate> <table> <tr> </HeaderTemplate> <ItemTemplate> <td> <table> <tr id="trHeader" runat="server"> <td>On</td>...
  20. LV

    DataList formatting question

    Hey man, thanks for the post! However, here is the thing: I have RepeatColumns="3" in the DataList, which builds 3 columns. The header though repeats only once for all three columns, like this: State Active ----- ------ State1 [chk] State2 [chk] State3 [chk] State4 [chk]...

Part and Inventory Search

Back
Top