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

ASP.NET

 
GeneralConflicting Thought Pin
Abdulhafeezo2-Sep-09 10:49
Abdulhafeezo2-Sep-09 10:49 
GeneralRe: Conflicting Thought Pin
Abhijit Jana2-Sep-09 19:53
professionalAbhijit Jana2-Sep-09 19:53 
QuestionCopy file from from one folder to another folder with rename Pin
Hemant_ec482-Sep-09 10:23
Hemant_ec482-Sep-09 10:23 
AnswerRe: Copy file from from one folder to another folder with rename Pin
Christian Graus2-Sep-09 11:12
protectorChristian Graus2-Sep-09 11:12 
AnswerRe: Copy file from from one folder to another folder with rename Pin
Abhishek Sur2-Sep-09 11:15
professionalAbhishek Sur2-Sep-09 11:15 
AnswerRe: Copy file from from one folder to another folder with rename Pin
Abhijit Jana2-Sep-09 18:51
professionalAbhijit Jana2-Sep-09 18:51 
Questionhow to keep the text in a textbox shown? Pin
Seraph_summer2-Sep-09 9:55
Seraph_summer2-Sep-09 9:55 
AnswerRe: how to keep the text in a textbox shown? Pin
Abhishek Sur2-Sep-09 11:07
professionalAbhishek Sur2-Sep-09 11:07 
Well Seraph,

The only case that your textbox value doesnt appear to the server side may arise if you textbox is either Enabled = "false" or Readonly = "true"

1 In case of <asp:textbox Enabled="false"
The form that holds the textbox doesnt submit itself. So the textbox will always appear to contain ""(Empty string) in the server side.

2. In case of <asp:textbox ReadOnly="true"
The form submits the textbox, but always the original value which is used to create the form retains in the server side. Thus any changes to the control doesnt appear.

Check whether your textbox is enabled or Readonly.

To transmit text from one page to another you might use querystring. Just place in your address
yourpage.aspx?x=name&y=age

But if the text is coming from the database, I would rather recommend you to fetch it from database every time, because, as this is web, the user might paste the link directly to the address bar rather than coming from the previous page.

Cool | :cool: Cool | :cool:

Abhishek Sur

My Latest Articles
Create CLR objects in SQL Server 2005
C# Uncommon Keywords
Read/Write Excel using OleDB

Don't forget to click "Good Answer" if you like to.

QuestionAJAX - Return multiple message from hidden file ( ASP or PHP ) Pin
bijan.8k2-Sep-09 9:33
bijan.8k2-Sep-09 9:33 
AnswerRe: AJAX - Return multiple message from hidden file ( ASP or PHP ) Pin
Abhishek Sur2-Sep-09 11:27
professionalAbhishek Sur2-Sep-09 11:27 
Question[Message Deleted] Pin
iserbrain2-Sep-09 4:19
iserbrain2-Sep-09 4:19 
AnswerRe: How to using webcam for live video on asp.net website ? Pin
Abhijit Jana2-Sep-09 4:29
professionalAbhijit Jana2-Sep-09 4:29 
AnswerRe: [Message Deleted] Pin
Abhijit Jana2-Sep-09 7:53
professionalAbhijit Jana2-Sep-09 7:53 
QuestionSaving the Uploaded File to the Web Server!! Pin
Sr...Frank2-Sep-09 3:44
Sr...Frank2-Sep-09 3:44 
AnswerRe: Saving the Uploaded File to the Web Server!! Pin
Blikkies2-Sep-09 4:19
professionalBlikkies2-Sep-09 4:19 
GeneralRe: Saving the Uploaded File to the Web Server!! Pin
Sr...Frank2-Sep-09 4:29
Sr...Frank2-Sep-09 4:29 
GeneralRe: Saving the Uploaded File to the Web Server!! Pin
Abhijit Jana2-Sep-09 4:33
professionalAbhijit Jana2-Sep-09 4:33 
GeneralRe: Saving the Uploaded File to the Web Server!! Pin
Blikkies2-Sep-09 4:36
professionalBlikkies2-Sep-09 4:36 
GeneralRe: Saving the Uploaded File to the Web Server!! Pin
Abhijit Jana2-Sep-09 4:42
professionalAbhijit Jana2-Sep-09 4:42 
AnswerRe: Saving the Uploaded File to the Web Server!! Pin
Abhijit Jana2-Sep-09 4:32
professionalAbhijit Jana2-Sep-09 4:32 
Questionhow to set property for a user control from cs file Pin
ansriharsha2-Sep-09 1:24
ansriharsha2-Sep-09 1:24 
AnswerRe: how to set property for a user control from cs file Pin
Not Active2-Sep-09 2:33
mentorNot Active2-Sep-09 2:33 
AnswerRe: how to set property for a user control from cs file [modified] Pin
r a m e s h2-Sep-09 2:59
r a m e s h2-Sep-09 2:59 
GeneralRe: how to set property for a user control from cs file Pin
Abhijit Jana2-Sep-09 4:34
professionalAbhijit Jana2-Sep-09 4:34 
QuestionWant to Store database locally and then update it to remote server Pin
sjs4u2-Sep-09 1:16
sjs4u2-Sep-09 1:16 

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.