Wednesday, November 28, 2007

I'm am sometimes suprised by the fact that when I have a problem and I start looking for answers that it doesn't matter so much what language the answer comes in. What I mean by this is that I have been having a problem which I thought was possibly related to the encoding of a Excel xml file which is being generated using ExcelXmlWriter (http://www.carlosag.net/Tools/ExcelXmlWriter/Default.aspx). I think it turns out the problem is something else which I'm still trying to figure out. The point is that I keep finding examples of code which were written by people from other countries, and while I can't read what they're saying I can read and understand their code. I love that no matter the language of the person the code is still human language independent.

Happy programming!

Tuesday, November 20, 2007

I thought I had to write this down in case someone else out there is having the same problem. I just re-organized my aspx pages into content pages for use within a master page and started getting the infamous "Invalid postback or callback argument". So I did the usual when I recieve some strange error message, I copy/pasted it into google. What I found was thousands of similar posts from other having the same problem and no answers.

After some looking I found a post which helped my track down my problem: http://weblogs.pontonetpt.com/miguelisidoro/posts/24975.aspx. It was Miguel's comment about the nested form tags that got me going. I did a quick search of my aspx page and found that I had forgotten to remove a ending < / form > tag. So watch out for nested and or incomplete html in the pages.