Click here to Skip to main content
15,891,136 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Run an EXE Pin
Abhijit Jana16-Jun-09 5:10
professionalAbhijit Jana16-Jun-09 5:10 
GeneralRe: Run an EXE Pin
madancode16-Jun-09 6:06
madancode16-Jun-09 6:06 
GeneralRe: Run an EXE Pin
Christian Graus16-Jun-09 16:20
protectorChristian Graus16-Jun-09 16:20 
AnswerRe: Run an EXE Pin
Abhishek Sur16-Jun-09 5:43
professionalAbhishek Sur16-Jun-09 5:43 
AnswerRe: Run an EXE Pin
Christian Graus16-Jun-09 16:15
protectorChristian Graus16-Jun-09 16:15 
GeneralRe: Run an EXE Pin
madancode16-Jun-09 22:58
madancode16-Jun-09 22:58 
QuestionHow 2 use DataContractJsonSerializer Pin
paliwal vipin16-Jun-09 1:59
paliwal vipin16-Jun-09 1:59 
AnswerRe: How 2 use DataContractJsonSerializer Pin
Abhishek Sur16-Jun-09 5:52
professionalAbhishek Sur16-Jun-09 5:52 
what about MSDN ??

DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(Product));
using (FileStream fs = File.OpenRead(@"c:\jsonText.txt"))
{
        //string json = @"{""Name"" : ""My Product""}";
        //MemoryStream ms = new MemoryStream(Encoding.Unicode.GetBytes(json));
        Product product = ser.ReadObject(fs) as Product;
        MessageBox.Show("Product Name: " + product.Name);
 }


[Serializable]
 public class Product
 {
   public string Name;
 }


Just see how Product is Deserialised from jsonText.txt file.

for further ref you can check this code as well
http://geekswithblogs.net/AzamSharp/archive/2007/11/04/116586.aspx


QuestionChange text in a Messagebox button Pin
Ratheesh_v16-Jun-09 1:22
Ratheesh_v16-Jun-09 1:22 
AnswerRe: Change text in a Messagebox button Pin
Manas Bhardwaj16-Jun-09 2:11
professionalManas Bhardwaj16-Jun-09 2:11 
GeneralRe: Change text in a Messagebox button Pin
Baran M16-Jun-09 2:45
Baran M16-Jun-09 2:45 
QuestionProblem when creating email with In-memory attachment Pin
ipsario16-Jun-09 0:56
ipsario16-Jun-09 0:56 
Questiondata set break through loop in vb.net Pin
prabhat kumar mokama16-Jun-09 0:50
prabhat kumar mokama16-Jun-09 0:50 
AnswerRe: data set break through loop in vb.net Pin
Christian Graus16-Jun-09 16:28
protectorChristian Graus16-Jun-09 16:28 
AnswerRe: data set break through loop in vb.net Pin
souravghosh1816-Jun-09 22:07
souravghosh1816-Jun-09 22:07 
QuestionSQLBulkCopy & Adding values [modified] Pin
munklefish16-Jun-09 0:43
munklefish16-Jun-09 0:43 
AnswerRe: SQLBulkCopy & Adding values Pin
himanshu256116-Jun-09 1:32
himanshu256116-Jun-09 1:32 
GeneralRe: SQLBulkCopy & Adding values Pin
munklefish16-Jun-09 1:50
munklefish16-Jun-09 1:50 
GeneralRe: SQLBulkCopy & Adding values Pin
himanshu256116-Jun-09 21:44
himanshu256116-Jun-09 21:44 
GeneralRe: SQLBulkCopy & Adding values Pin
munklefish16-Jun-09 23:40
munklefish16-Jun-09 23:40 
Questionwhat mean this write Pin
jason_mf16-Jun-09 0:09
jason_mf16-Jun-09 0:09 
AnswerRe: what mean this write Pin
pompeyboy216-Jun-09 0:38
pompeyboy216-Jun-09 0:38 
AnswerRe: what mean this write Pin
Baran M16-Jun-09 0:46
Baran M16-Jun-09 0:46 
Answerthe force strong in you is Pin
munklefish16-Jun-09 0:51
munklefish16-Jun-09 0:51 
AnswerRe: what mean this write Pin
Christian Graus16-Jun-09 18:32
protectorChristian Graus16-Jun-09 18:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.