4
votes
Stack overflow error when using JQuery/ASP.NET for simple ajax chat
Your javascript refreshChat function is recursively calling itself. Change the code to:
function refreshChat()
{
$.get("messages.aspx", function(data) { …
3
votes
Checkbox and JQUERY: “is checked” always FALSE
could it be because you are comparing the value of the checked property to a string rather than a boolean and using the === operator which compares both value and type?
…
1
vote
What is the best way of generating a xslx file on a web site? Possibly with millions of rows?
Excel 2007 supports a maximum worksheet size of 1,048,576 rows by 16,384 columns so your test with 1.5 million rows may not be feasible. …
3
votes
hidden field is null on !IsPostBack and not null on IsPostBack
You could define a property in your page class and then modify the property value in your code:
protected string HiddenFieldValue { get; set; }
protected void Page_Load(obj …
