Click here to Skip to main content
15,911,360 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Please help me!!! Pin
Khan.Bangash7-Nov-06 2:17
Khan.Bangash7-Nov-06 2:17 
AnswerI think there will be no Click event for text field Pin
Dileep.M7-Nov-06 2:54
Dileep.M7-Nov-06 2:54 
AnswerRe: Please help me!!! Pin
monika_vasvani7-Nov-06 17:07
monika_vasvani7-Nov-06 17:07 
AnswerRe: Please help me!!! Pin
dj.rock7-Nov-06 17:59
dj.rock7-Nov-06 17:59 
QuestionHow i wite Page Directries..... Pin
Sam.M7-Nov-06 0:59
Sam.M7-Nov-06 0:59 
AnswerRe: How i wite Page Directries..... Pin
Paddy Boyd7-Nov-06 1:30
Paddy Boyd7-Nov-06 1:30 
Questionxml file syncronization Pin
kumarprabhakar747-Nov-06 0:55
kumarprabhakar747-Nov-06 0:55 
AnswerRe: xml file syncronization Pin
ravie gopal7-Nov-06 16:18
ravie gopal7-Nov-06 16:18 
To maintain multi user changes on a physical file, Open the file as below:
FileStream fs = File.Open("C:\\abc.xml", FileMode.Open, FileAccess.ReadWrite, FileShare.Read);
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(fs);

Now you can read and update the xmlDoc object. and when you are done, you can use the same FileStream object to write back your changes to the xml file.
As, we used FileAccess.ReadWrite we can read as well as write to the file.
And as we used FileShare.Read we give other users only Read permission until we close the conenction.




Ravi Gopal.

GeneralRe: xml file syncronization Pin
kumarprabhakar747-Nov-06 20:26
kumarprabhakar747-Nov-06 20:26 
QuestionHow to call dll files in aspx page Pin
Sam.M7-Nov-06 0:40
Sam.M7-Nov-06 0:40 
AnswerRe: How to call dll files in aspx page Pin
just3ala27-Nov-06 0:49
just3ala27-Nov-06 0:49 
GeneralRe: How to call dll files in aspx page Pin
Sam.M7-Nov-06 0:57
Sam.M7-Nov-06 0:57 
GeneralRe: How to call dll files in aspx page Pin
just3ala27-Nov-06 1:06
just3ala27-Nov-06 1:06 
GeneralRe: How to call dll files in aspx page Pin
Sam.M7-Nov-06 1:13
Sam.M7-Nov-06 1:13 
AnswerRe: How to call dll files in aspx page Pin
Paddy Boyd7-Nov-06 1:17
Paddy Boyd7-Nov-06 1:17 
GeneralRe: How to call dll files in aspx page Pin
Sam.M7-Nov-06 1:18
Sam.M7-Nov-06 1:18 
GeneralRe: How to call dll files in aspx page Pin
Paddy Boyd7-Nov-06 1:20
Paddy Boyd7-Nov-06 1:20 
GeneralRe: How to call dll files in aspx page Pin
Sam.M7-Nov-06 1:25
Sam.M7-Nov-06 1:25 
GeneralRe: How to call dll files in aspx page Pin
Paddy Boyd7-Nov-06 1:30
Paddy Boyd7-Nov-06 1:30 
Questionhow to bind data in textbox control? Pin
Imran Khan Pathan7-Nov-06 0:37
Imran Khan Pathan7-Nov-06 0:37 
AnswerRe: how to bind data in textbox control? Pin
just3ala27-Nov-06 0:55
just3ala27-Nov-06 0:55 
GeneralRe: how to bind data in textbox control? Pin
Imran Khan Pathan7-Nov-06 1:04
Imran Khan Pathan7-Nov-06 1:04 
GeneralRe: how to bind data in textbox control? Pin
Imran Khan Pathan7-Nov-06 2:10
Imran Khan Pathan7-Nov-06 2:10 
GeneralRe: how to bind data in textbox control? [modified] Pin
Khan.Bangash7-Nov-06 2:22
Khan.Bangash7-Nov-06 2:22 
Questionhow to add ascx control dynamically in page Pin
Amit Agarrwal7-Nov-06 0:13
Amit Agarrwal7-Nov-06 0:13 

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.