Click here to Skip to main content
15,889,808 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionsql express backup and restore Pin
umeshdaiya28-Jan-10 17:19
umeshdaiya28-Jan-10 17:19 
AnswerRe: sql express backup and restore Pin
Unforgiv3n1-Feb-10 0:37
Unforgiv3n1-Feb-10 0:37 
QuestionHow to get cookies from CookieContainer via ASP.NET? Pin
hello_amigo28-Jan-10 10:57
hello_amigo28-Jan-10 10:57 
AnswerRepost x 3 Pin
Not Active28-Jan-10 13:36
mentorNot Active28-Jan-10 13:36 
Questionhow can I do 64 bit and 128 bit encryption Pin
Member 426027028-Jan-10 4:50
Member 426027028-Jan-10 4:50 
AnswerRe: how can I do 64 bit and 128 bit encryption Pin
Not Active28-Jan-10 5:24
mentorNot Active28-Jan-10 5:24 
GeneralRe: how can I do 64 bit and 128 bit encryption Pin
Member 426027028-Jan-10 15:13
Member 426027028-Jan-10 15:13 
QuestionJunk characters are displayed while reading from text file in ASP.Net Pin
rashmi_s28-Jan-10 0:34
rashmi_s28-Jan-10 0:34 
While reading from a text file and displaying the content in a label or textbox in ASP.Net, junk characters are displayed at the beginning and end of the content. I tried the encoding scheme, but still unable to solve the problem. Please find part of the code below.

FileStream fs2 = new FileStream("D:\\word.doc", FileMode.Open, FileAccess.Read);
StreamReader sReader2 = new StreamReader(fs2, System.Text.Encoding.UTF8);
string line;                
while ((line = sReader2.ReadLine()) != null)
{
    Label1.Text = Label1.Text + "\r\n" + line;
}
sReader2.Close();

AnswerRe: Junk characters are displayed while reading from text file in ASP.Net Pin
Prosanta Kundu online28-Jan-10 0:45
Prosanta Kundu online28-Jan-10 0:45 
GeneralRe: Junk characters are displayed while reading from text file in ASP.Net Pin
rashmi_s28-Jan-10 20:17
rashmi_s28-Jan-10 20:17 
QuestionProblem with crystal reports in an asp.net application Pin
aminowest28-Jan-10 0:33
aminowest28-Jan-10 0:33 
QuestionGridView Pin
arkiboys27-Jan-10 22:51
arkiboys27-Jan-10 22:51 
AnswerRe: GridView Pin
Prosanta Kundu online27-Jan-10 23:08
Prosanta Kundu online27-Jan-10 23:08 
GeneralRe: GridView Pin
arkiboys27-Jan-10 23:12
arkiboys27-Jan-10 23:12 
AnswerRe: GridView Pin
keyur satyadev27-Jan-10 23:18
keyur satyadev27-Jan-10 23:18 
AnswerRe: GridView Pin
Brij27-Jan-10 23:21
mentorBrij27-Jan-10 23:21 
GeneralRe: GridView Pin
arkiboys27-Jan-10 23:30
arkiboys27-Jan-10 23:30 
GeneralRe: GridView Pin
keyur satyadev27-Jan-10 23:38
keyur satyadev27-Jan-10 23:38 
GeneralRe: GridView Pin
arkiboys27-Jan-10 23:40
arkiboys27-Jan-10 23:40 
GeneralRe: GridView Pin
Brij27-Jan-10 23:45
mentorBrij27-Jan-10 23:45 
GeneralRe: GridView [modified] Pin
arkiboys27-Jan-10 23:50
arkiboys27-Jan-10 23:50 
GeneralRe: GridView Pin
Brij28-Jan-10 0:13
mentorBrij28-Jan-10 0:13 
GeneralRe: GridView [modified] Pin
arkiboys28-Jan-10 0:18
arkiboys28-Jan-10 0:18 
GeneralRe: GridView Pin
Brij28-Jan-10 0:21
mentorBrij28-Jan-10 0:21 
GeneralRe: GridView Pin
VinayGarg8228-Jan-10 0:35
VinayGarg8228-Jan-10 0:35 

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.