Click here to Skip to main content
15,892,809 members

Comments by neal123 (Top 8 by date)

neal123 11-Mar-11 14:39pm View    
Yes, albert you are right at this point that windows doesn't know the difference between. So, I also came on same conclusion and as per WMI classes its returning ItnerfaceType property for disk drives. And I found different types of InterfaceType of SSD drives for different manufactureres.
Please check below link and interfaceType of every SSD drives.
http://ssd.allonthis.com/tag/interface-type/
I have also found MediaType but for both still I am not confident so, need more advice from experts.
neal123 11-Mar-11 7:40am View    
Sorry, No solution in that...
neal123 11-Mar-11 7:39am View    
Sorry, No solution in that...
neal123 27-Dec-10 7:05am View    
Hi John,

I have updated my question with code. Can you please guide me according to that.

My Code behind event is not getting fired on Ajax Time Out exception so, I am not able to close connection.
neal123 9-Jul-10 2:15am View    
Hi I have follow below way,

if (readEmail.Read())
{

System.Web.UI.ScriptManager Manager = System.Web.UI.ScriptManager.GetCurrent(this.Page);
if (Manager.IsInAsyncPostBack)
{
System.Web.UI.ScriptManager.RegisterClientScriptBlock(this, this.GetType(), Guid.NewGuid().ToString(), "alert('hello');" + Page.ClientScript.GetPostBackEventReference(this, "") + ";", true);
}
}
But not getting any alert.