this is the error:
"The server responded with an error.
The server did not recognize your user name or password for account “address@gmail.com.” Make sure you enter them correctly."
how to fix it:
from the terminal:
rm ~/Library/Calendars/Calendar\ Cache
this will stop the crashing and let you change the settings for the accounts
arrows not working correctly on VI or VIM ...
fix:
Go to your home directory, ( in my case /Users/crivero/ )
Open your .profile and add
TERM=linux
at the first line of the file. Save and quit
DONE!
now you need to logout and login again ... or just type:
source .profile
[b]Solutions:[/b]
I created two macros.... one for adding the revision number on demand (selected project and press of a button) and the other one will write it every time the build command is called.
for the macro code click Read more....
UseSubmitBehavior="False"
So it looks like:
"The problem wasn't that it didn't do a postback. That it did. What it didn't do was hit the server side event (the button click event)."
ErrorMessage="invalid name" ControlToValidate="txtLName" Display="None" ValidationExpression="^([ \u00c0-\u01ffa-zA-Z'])+$"> ItemCollection i = new ItemCollection();
i.LoadAll();
this.ddlItemType.DataSource = i;
this.ddlItemType.DataTextField = ItemMetadata.PropertyNames.Description;
this.ddlItemType.DataValueField = ItemMetadata.PropertyNames.ItemTypeID;
this.ddlItemType.DataBind();
if you add this after the databind it will add a list item at index zero (pre-selected)
ListItem li = new ListItem("select one ", "");
this.ddlItemType.Items.Insert(0,li);