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...
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...
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...
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...
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")%>' />...
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?
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...
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...
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.
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">...
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...
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...
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.
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...
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...
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...
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...
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
...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.