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 strongm 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: *

  1. Technokrat

    Can't access web site from IE 10 and IE 11 running on windows 8

    We recently went through a browser remediation effort to make sure our web site was accessible from XP to Windows 8 using Chrome, Firefox, and IE 7 through 11. Everything works/looks good up until Win 8 & 8.1 with the IE 10 & 11 browsers. The interesting thing is that in production things...
  2. Technokrat

    WCF error, System.ServiceModel.CommunicationException the maximum message size quota

    We are seeing this error related to an http file transfer request WCF error, System.ServiceModel.CommunicationException the maximum message size quota for incoming messages has been exceeded. I've seen several posts related to this message, with the general response of just bump it to the...
  3. Technokrat

    How to use MVC AntiForgeryToken with partial views

    My question is more driven by what is the proper approach when dealing with partial views. Is there a token for each partial view, or the container as a whole? Currently our form contains divs for 5 partial views. The user is responding to a list of certification questions, and based on...
  4. Technokrat

    return image or image url from the handler?

    Thank you, that worked. However, clicking one of the dynamic buttons causes a postback/repaint of all the buttons in the grid. The desired result would be a change in state of the clicked button and not a refresh of the whole page. I tried putting "return false;" in the OnClientClick, but...
  5. Technokrat

    return image or image url from the handler?

    I have a datagrid with a templated field that looks like the following: <asp:TemplateField HeaderText="Sunday"> <ItemTemplate> <asp:Image ID="Image1" runat="server" ImageUrl='<%# "AvailabilityButtonHandler.ashx?EmployeeId=1&DOW=0&ID=" + Eval("Sunday")%>' />...
  6. Technokrat

    newbie question - how to get text field value when embedded

    Thanks for the help, that worked. However, now on the postback my values for PersonId and PhoneId are null. Do I need to add these as hidden fields for them to be available on postback, or is there another way to do this?
  7. Technokrat

    newbie question - how to get text field value when embedded

    thanks Mark, here is the code as you requested... Extracting the values from the fields in btnSubmit_Click is where I need guidance. using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using...
  8. Technokrat

    newbie question - how to get text field value when embedded

    The table is NOT in the master page. I have it in the form and I'm using it for formatting. The textbox is in one of the table cells. I'm loading and populating the field from the database, but when I click the submit button I am unable to retrieve the updated fields. When I reference the...
  9. Technokrat

    newbie question - how to get text field value when embedded

    I can take the ID out of the table, I'm not doing anything dynamic. However, that doesn't get me any closer to resolving the findcontrol of the textbox. I still end up with a NULL reference.
  10. Technokrat

    newbie question - how to get text field value when embedded

    Thank you. However, I am still getting a null result. Does the fact that this web form has a master page make a difference? if it helps, here is what I am working with: <table style="width:100%;" id="tblFormData"> <tr> <td class="style12" colspan="3">...
  11. Technokrat

    newbie question - how to get text field value when embedded

    I'm new to web development, I'm using aspx, c# I'm trying to use this.txtHomePhone.text to get the value. This is working fine on simple forms, but it doesn't seem to work when the text field is in a container object, such as a table. It's like it can't resolve the "txtHomePhone" reference...
  12. Technokrat

    AfxBeginThread passed pointer information lost

    hello, I'm trying to use a thread to retrieve inventory level information from a db, and store it in a map. Below I have included the struct from the header file, and the call to the thread. I am initializing the structure with an inventory item id, and date range prior to the thread call...
  13. Technokrat

    future days

    Is there a way in a single select statement to return the Tuesdays for the next future (N) weeks from the current date?
  14. Technokrat

    How to reference checkbox on non-current tab of a tab control

    How do you reference a checkbox on the non-current tab of a tab control? I have 2 checkboxes on different tabs that are mutually exclusive. If the user checks checkbox 1 on Tab A, then a message is displayed, and checkbox 2 on Tab B should be automatically un-checked.
  15. Technokrat

    is there a dirty flag for property pages

    just to add a little more background info/specifics I've added the following to DoFieldExchange: DFX_Long(pFX, _T("[ProductUse]"), m_ProductUse, AFX_DAO_DISABLE_FIELD_CACHE); Which according to the MFC/DAO help says I should be able to manually set the field as dirty so it will be saved by...
  16. Technokrat

    is there a dirty flag for property pages

    Is there a dirty flag for property pages. In other words what, or how does a property page communicate to its parent that it is dirty(data has changed)? I have a dialog with four tabs(property pages), and changes to the first tab are recognized by the dialog and it prompts the user with the...
  17. Technokrat

    version assignment / control for multiple EXEs/DLLs

    Does anybody know how the RC file is generated. I assume it is based on some template. Where is this template, and what is it called?
  18. Technokrat

    version assignment / control for multiple EXEs/DLLs

    Typically, our builds are performed every night. However, they may be done on a request basis. I agree the individual builds don't matter because they are part of the individual programmer's development environment. This is the way we treat it. The master builds occur on a centralized...
  19. Technokrat

    version assignment / control for multiple EXEs/DLLs

    I work for a software firm with around 30 programmers. Our main product is comprised of 145 executables and 165 DLL's. To date, we have been using a common version.h file and including this in the .RC file to have all EXEs and DLLs have the same version for a given release. You can probably...
  20. Technokrat

    How do you default a checkbox to checked on 2nd property page

    I figured out one method to do it, but there may be a better one. I added the following to the OnEvent function of the master form for the property pages. switch(nEvent) { case TABEVT_MOVENEXT: if( m_DlgMode == ADD ) ((CButton*)m_ptrPage2->GetDlgItem(IDC_CHK_BOX))->SetCheck(1); break ...

Part and Inventory Search

Back
Top