Click here to Skip to main content
15,887,135 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to use message box in asp.net Pin
Deepak Nigam14-Apr-08 1:16
Deepak Nigam14-Apr-08 1:16 
AnswerRe: How to use message box in asp.net Pin
Christian Graus14-Apr-08 1:22
protectorChristian Graus14-Apr-08 1:22 
GeneralRe: How to use message box in asp.net Pin
Deepak Nigam14-Apr-08 1:59
Deepak Nigam14-Apr-08 1:59 
GeneralRe: How to use message box in asp.net Pin
Christian Graus14-Apr-08 3:03
protectorChristian Graus14-Apr-08 3:03 
GeneralRe: How to use message box in asp.net Pin
Broken Bokken14-Apr-08 9:47
Broken Bokken14-Apr-08 9:47 
AnswerRe: How to use message box in asp.net Pin
ArunVijay14-Apr-08 7:44
ArunVijay14-Apr-08 7:44 
AnswerRe: How to use message box in asp.net Pin
www.Developerof.NET14-Apr-08 20:09
www.Developerof.NET14-Apr-08 20:09 
Generaladd validator dynamically Pin
ptvce14-Apr-08 0:56
ptvce14-Apr-08 0:56 
RequiredFieldValidator validator = new RequiredFieldValidator();
Table t = new Table();
TableCell c = new TableCell();
TableRow r = new TableRow();

validator.ControlToValidate = "TextBox1";
validator.ErrorMessage = "*";
validator.EnableViewState = true;
validator.EnableClientScript = true;
//Page.Validators.Add(validator);
validator.Display = ValidatorDisplay.Dynamic;
validator.EnableTheming = true;
validator.Enabled = true;
c.Controls.Add(validator);
r.Controls.Add(c);
t.Controls.Add(r);
Wizard1.Controls.Add(t);


i write this code but it dose not work. do any body what should i do?
GeneralRe: add validator dynamically Pin
Christian Graus14-Apr-08 1:02
protectorChristian Graus14-Apr-08 1:02 
GeneralRe: add validator dynamically Pin
ptvce14-Apr-08 1:11
ptvce14-Apr-08 1:11 
Generaldatareader in asp.net Pin
bkarthikeyansjcmca@gmail.com14-Apr-08 0:49
bkarthikeyansjcmca@gmail.com14-Apr-08 0:49 
GeneralRe: datareader in asp.net Pin
Christian Graus14-Apr-08 1:01
protectorChristian Graus14-Apr-08 1:01 
GeneralRe: datareader in asp.net Pin
N a v a n e e t h14-Apr-08 1:03
N a v a n e e t h14-Apr-08 1:03 
GeneralRe: datareader in asp.net Pin
ArunVijay14-Apr-08 7:53
ArunVijay14-Apr-08 7:53 
Generalselect source is vanished when two menus are displayed from one sitemap, Pin
_tasleem14-Apr-08 0:22
_tasleem14-Apr-08 0:22 
GeneralRe: select source is vanished when two menus are displayed from one sitemap, Pin
Herman<T>.Instance14-Apr-08 5:17
Herman<T>.Instance14-Apr-08 5:17 
GeneralRe: select source is vanished when two menus are displayed from one sitemap, Pin
_tasleem14-Apr-08 21:24
_tasleem14-Apr-08 21:24 
GeneralRe: select source is vanished when two menus are displayed from one sitemap, Pin
Herman<T>.Instance14-Apr-08 22:17
Herman<T>.Instance14-Apr-08 22:17 
GeneralRe: select source is vanished when two menus are displayed from one sitemap, Pin
_tasleem16-Apr-08 4:29
_tasleem16-Apr-08 4:29 
QuestionIs Microsoft.ApplicationBlocks.Data.dll compatible with VS2005? Pin
Mustanseer M S14-Apr-08 0:18
Mustanseer M S14-Apr-08 0:18 
GeneralRe: Is Microsoft.ApplicationBlocks.Data.dll compatible with VS2005? PinPopular
Christian Graus14-Apr-08 0:21
protectorChristian Graus14-Apr-08 0:21 
GeneralRe: Is Microsoft.ApplicationBlocks.Data.dll compatible with VS2005? Pin
AndrewVos14-Apr-08 4:32
AndrewVos14-Apr-08 4:32 
GeneralRe: Is Microsoft.ApplicationBlocks.Data.dll compatible with VS2005? Pin
Gary R. Wheeler15-Apr-08 10:20
Gary R. Wheeler15-Apr-08 10:20 
Generallogin page in asp.net Pin
sumit703413-Apr-08 23:52
sumit703413-Apr-08 23:52 
GeneralRe: login page in asp.net Pin
Christian Graus14-Apr-08 0:00
protectorChristian Graus14-Apr-08 0:00 

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.