Ask a Question related to ASP.NET General, Design and Development.
-
Al #1
Intermittent Postback Bug
I've got an intermittent bug with Postbacks and ASP.NET, maybe someone has
seen before:
In a nutshell, on two servers the form postbacks are fine, and all the
DropDownLists, TextBoxes, and else are accessible in the postback processing
routine.
However, when the same project is deployed to the production server the
postback processing routine receives NULL for the DropDowns, i.e.
"cmbType.SelectedItem" is null, even though all fields are filled in, and
the same code works on another server.........
Thanks!
Alex
CODE EXCERPTS:
PAGE LOAD:
private void Page_Load(object sender, System.EventArgs e)
{
if (IsPostBack)
{
ProcessForm();
Response.Redirect("default.aspx", true);
return;
}
}
protected bool ProcessForm()
{
String strIncidentXml;
//Type
strIncidentXml += "<casetypecode>" +
cmbType.SelectedItem.Value.ToString()
+ "</casetypecode>";
//Subject
strIncidentXml += "<subjectid>" +
cmbSubject.SelectedItem.Value.ToString()
+ "</subjectid>";
//Priority
strIncidentXml += "<prioritycode>" +
cmbPriority.SelectedItem.Value.ToString()
+ "</prioritycode>";
//Contact Name
strIncidentXml += "<CFSContactName>" +
lblContactName.Text
+ "</CFSContactName>";
....
}
--
remove underscores to email
Al Guest
-
You Cannot Perform... intermittent issue
Here's an odd one: We have an issue that has come up with a client using that is using Contribute 3.11 on a site that has been built with... -
loadVars Intermittent Problem
I am the developer of a Flash application that is currently being used about 8,000 times a day. As part of the initialization process, the... -
Intermittent stalling
This is behaviour I've never seen before. Basically the symptoms are: - every minute or two, ColdFusion stops processing requests - requests... -
Intermittent Network
I have 3 XP machines networked with 1 a laptop that is the problem. The laptop was freezing intermittently and finally I rebuilt from restoration... -
Intermittent Commits
Hye ! I have a query which selects from several tables and inserts into a table X. Two ways of writing this query are (A) fast but risky (B)...



Reply With Quote

