Click here to Skip to main content
15,919,778 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Solution file in VS.NET 2005 Pin
Brij27-Nov-08 17:19
mentorBrij27-Nov-08 17:19 
GeneralRe: Solution file in VS.NET 2005 Pin
kirtiaroraa27-Nov-08 19:23
kirtiaroraa27-Nov-08 19:23 
GeneralRe: Solution file in VS.NET 2005 Pin
Abhijit Jana27-Nov-08 19:48
professionalAbhijit Jana27-Nov-08 19:48 
AnswerRe: Solution file in VS.NET 2005 Pin
simsen27-Nov-08 21:51
simsen27-Nov-08 21:51 
QuestionTextChanged not giving new value Pin
Ekjon27-Nov-08 9:56
Ekjon27-Nov-08 9:56 
AnswerRe: TextChanged not giving new value Pin
Christian Graus27-Nov-08 10:00
protectorChristian Graus27-Nov-08 10:00 
GeneralRe: TextChanged not giving new value Pin
Ekjon27-Nov-08 10:13
Ekjon27-Nov-08 10:13 
GeneralRe: TextChanged not giving new value Pin
Christian Graus27-Nov-08 10:22
protectorChristian Graus27-Nov-08 10:22 
As I understand it, the issue is that your design is totally broken. You have a hard coded value for the date, so it never changes. Instead, you should use javascript to read the value out of the control when you show the popup. The ClientID property of your textbox on the server side, will tell you what it's going to be called on the client side, so a js block like

var tb = document.getElementById('<%=MyTextbox.ClientID%>';
// now pass the text of this control to your popup, make sure you check that tb is not null first

is what you need. I suspect this will do away with the percieved need for auto postback, too.

Christian Graus

Driven to the arms of OSX by Vista.

GeneralRe: TextChanged not giving new value Pin
Ekjon27-Nov-08 10:58
Ekjon27-Nov-08 10:58 
GeneralRe: TextChanged not giving new value Pin
Christian Graus27-Nov-08 15:23
protectorChristian Graus27-Nov-08 15:23 
GeneralRe: TextChanged not giving new value Pin
Ekjon28-Nov-08 7:21
Ekjon28-Nov-08 7:21 
QuestionRetrieving excel columns to panel of textboxes Pin
adarshyam27-Nov-08 8:33
adarshyam27-Nov-08 8:33 
AnswerRe: Retrieving excel columns to panel of textboxes Pin
Christian Graus27-Nov-08 10:01
protectorChristian Graus27-Nov-08 10:01 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
adarshyam27-Nov-08 11:37
adarshyam27-Nov-08 11:37 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
Christian Graus27-Nov-08 15:25
protectorChristian Graus27-Nov-08 15:25 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
adarshyam27-Nov-08 15:29
adarshyam27-Nov-08 15:29 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
Christian Graus27-Nov-08 15:45
protectorChristian Graus27-Nov-08 15:45 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
adarshyam27-Nov-08 18:55
adarshyam27-Nov-08 18:55 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
adarshyam30-Nov-08 7:22
adarshyam30-Nov-08 7:22 
QuestionNavigate2 Pin
Sebastian T Xavier27-Nov-08 8:23
Sebastian T Xavier27-Nov-08 8:23 
AnswerRe: Navigate2 Pin
Christian Graus27-Nov-08 10:03
protectorChristian Graus27-Nov-08 10:03 
QuestionSet IsVisble Tag Property in SharePoint Data View WebPart based on query string Pin
Brilliant_Corners27-Nov-08 5:48
Brilliant_Corners27-Nov-08 5:48 
Questionconditional split in ssis Pin
l.laxmikant27-Nov-08 3:35
l.laxmikant27-Nov-08 3:35 
QuestionRe: conditional split in ssis Pin
Abhijit Jana27-Nov-08 3:38
professionalAbhijit Jana27-Nov-08 3:38 
QuestionNeed help from ASP.Net Developers Pin
Binoy Rajan27-Nov-08 2:54
Binoy Rajan27-Nov-08 2:54 

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.