Click here to Skip to main content
15,886,519 members

Comments by Sumit Memane (Top 25 by date)

Sumit Memane 20-Sep-13 8:23am View    
Here is code.
string strPath = @"C:\sample.docx";

System.IO.FileInfo file = new System.IO.FileInfo(strPath);

if (file.Exists == true)
{
Response.Clear();
Response.AddHeader("content-disposition", "inline; filename=" + file.Name);
Response.AddHeader("Content-Length", file.Length.ToString());
Response.ContentType = "application/doc";
Response.WriteFile(file.FullName);
Response.End();
Response.Flush();
}
Sumit Memane 31-Aug-13 3:45am View    
jus like a google map older version
on left hand side you will get result and when you click on specific result. it will show tooltip of that marker.
Sumit Memane 31-Aug-13 2:19am View    
Hi Mohan.
in my app there is tree node related to every marker on map.
when i click on tree node label. i want to show the tooltip of that specific marker.
Sumit Memane 23-May-13 5:32am View    
I want pinch touch event in c#.net with VS2010
Sumit Memane 20-May-13 8:27am View    
I want for Pinch zoom in/out for touch screen device,
My monitor is touch screen monitor,