APP DEV SECRETS
YOU Can Create an iPhone or iPad App or Game in 4 weeks And Hit Pay Dirt With It In The App Store With No Programming Skills.
Read more: http://tinyurl.com/olblz52
Don't forget to reverse the polarity of the neutron flow before you start.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
whether in its Page_Load event has been added like this:
(! Page.IsPostBack)
{
}
to be this
protected void Page\_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
}
}
The MySql ODBC Connector v3.51 is a very old driver. The latest is version 5.1. http://dev.mysql.com/downloads/connector/odbc/[^], check it out. I think it will solved your problem :-)
Please Explain what exactly are you trying to do. Did you analyse exactly what was shown by wireshark. Please post it so we know more info. My guess is you icmp message was 12 byte but the whole packet encapsulated by lower layers(udp and ethernet frame) made it to look of wrong size to you but is of correct size. the icmp reply also contain the orginal ping request which is again of different size. Did you send 12 bytes and wireshark showed 150 byte. or you sent 150 bytes and wireshark showed 12 bytes. Just check what data are you giving to the socket????
Since that won't do, try this: Load the program in a debugger and read the starting and ending address of the function and do the math. Otherwise you need to do a lot more research before you can ask your question.