Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~3K People Reached

10 Posted Topics

Member Avatar for jijo cleetus

Hi All, Any body know how to convert EML files to Doc or MSG with proper formatting Many thanks in advance

Member Avatar for ariascott
0
232
Member Avatar for riahc3

try this to get xml fields to dataset then to gridview: add namespace : using System.Xml.Linq; DataSet ds = new DataSet(); ds.ReadXml(Server.MapPath("Events.xml")); GridView1.DataSource = ds.Tables[0].DefaultView; GridView1.DataBind();

Member Avatar for skatamatic
0
758
Member Avatar for katheeja

this may help........ cmd.Connection = con; cmd.CommandType = CommandType.Text; cmd.CommandText = "select count(FEILD NAME) from TABLE NAME"; da.SelectCommand = cmd; da.Fill(dt); int count =int.parse(dt.Rows[0][0].ToString()); Response.write(count.ToString());

Member Avatar for jijo cleetus
0
87
Member Avatar for nickg21

hi Nick ... Try this.......... DateTime s = DateTime.Now; //Declare date time variable String S_Date = s.ToString("MM/dd/yyyy HH:mm:ss tt", System.Globalization.CultureInfo.InvariantCulture); //Convert to desired format System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US"); //dd/MM/yyyy s = DateTime.Parse(sate); //assign back to datetime variable... once you have converted date time to this format you can directly insert …

Member Avatar for jijo cleetus
0
127
Member Avatar for Arjun_Sarankulu

Hi Arjun, I have created a msg file converter which converts incoming and outgoing mails to doc format.can you kindly share how to check undelivred mail,so that i can catch those excepstions as well. MANY THANKS IN ADVANCE.............

Member Avatar for jijo cleetus
0
259
Member Avatar for jijo cleetus

Hi All, Any body know how to convert EML files to Doc or MSG with proper formatting Many thanks in advance

0
63
Member Avatar for jijo cleetus

Hi All, I need to create a eml to doc/pdf converter. I have already created a msg to doc conveter...so eml to msg converter too will help me. I tried searching a lot but its really hard to find.can anybody advise me on this.... Many thanks in advance....

0
68
Member Avatar for jijo cleetus

Hi, The onUnload event is triggerred both when a user clicks the 'Refresh' button(post back) as well as when the user clicks the 'X' (close browser)icon on the browser. I have to build an application in which the page may post back while drop-downlist selected index change event occurs.I need …

Member Avatar for jd31068
0
934
Member Avatar for jijo cleetus

Hi, i need to convert date format 1/16/2010 10:10:2011 AM to [COLOR="Red"]16/1/[/COLOR]2010 10:10:2011 AM after that i need to put values to database too as datetime datatype. error I am getting : "The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value. …

Member Avatar for jijo cleetus
0
160
Member Avatar for jijo cleetus

Hi i need to convert date format 16/1/2010 10:10:2011 AM to 1/16/2010 10:10:2011 AM after that i need to put values to database too as datetime datatype.Can you please help. many thanks in advance

Member Avatar for jijo cleetus
0
171

The End.