Click here to Skip to main content
15,879,535 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: using an AJAX extender in a custom server control Pin
TofuBug2417-Nov-09 2:11
TofuBug2417-Nov-09 2:11 
QuestionAJAX Collapsible Panels and SEO Pin
danedelen16-Nov-09 6:54
danedelen16-Nov-09 6:54 
AnswerRe: AJAX Collapsible Panels and SEO Pin
Abhishek Sur16-Nov-09 8:55
professionalAbhishek Sur16-Nov-09 8:55 
QuestionAdd/change image in javascript Pin
PeriyasamyRamachandran16-Nov-09 6:42
PeriyasamyRamachandran16-Nov-09 6:42 
AnswerRe: Add/change image in javascript Pin
Abhishek Sur16-Nov-09 8:35
professionalAbhishek Sur16-Nov-09 8:35 
GeneralRe: Add/change image in javascript Pin
Eduard Keilholz16-Nov-09 9:54
Eduard Keilholz16-Nov-09 9:54 
GeneralRe: Add/change image in javascript Pin
Abhishek Sur16-Nov-09 21:01
professionalAbhishek Sur16-Nov-09 21:01 
QuestionAjax "Update Panel" control error Pin
kmb8915-Nov-09 21:49
kmb8915-Nov-09 21:49 
I have a error in learning Ajax lessons.
The error is "UpdatePanel does not contain a definition for ContentTemplateContainer".

Following is my codes:

public partial class UpdatePanel1 : System.Web.UI.Page
{
private Label label1;
protected void Page_Load(object sender, EventArgs e)
{
UpdatePanel l_UpdatePanel = new UpdatePanel();
l_UpdatePanel.ID = "UpdatePanel1";
//Create the label
label1 = new Label();
label1.ID = "Label1";
label1.Text = DateTime.Now.ToString();
//Create the button
Button l_Button = new Button();
l_Button.ID = "Button1";
l_Button.Click += new EventHandler(l_Button_Click);
//Create the literals
LiteralControl l_LiteralControl = new LiteralControl();
//Embed the controls to the UpdatePanel
l_UpdatePanel.ContentTemplateContainer.Controls.Add(label1);
l_UpdatePanel.ContentTemplateContainer.Controls.Add(l_LiteralControl);
l_UpdatePanel.ContentTemplateContainer.Controls.Add(l_Button);
//Add the update panel to the form
this.Controls.Add(l_UpdatePanel);
}

void l_Button_Click(object sender, EventArgs e)
{
this.label1.Text = DateTime.Now.ToString();
}
}
AnswerRe: Ajax "Update Panel" control error Pin
Abhishek Sur16-Nov-09 4:27
professionalAbhishek Sur16-Nov-09 4:27 
QuestionIIS5 unable to see PNG image [modified] Pin
mah_pankaj15-Nov-09 18:20
mah_pankaj15-Nov-09 18:20 
AnswerRe: IIS5 unable to see PNG image Pin
Abhishek Sur16-Nov-09 4:21
professionalAbhishek Sur16-Nov-09 4:21 
AnswerRe: IIS5 unable to see PNG image Pin
Abhijit Jana16-Nov-09 4:47
professionalAbhijit Jana16-Nov-09 4:47 
GeneralRe: IIS5 unable to see PNG image Pin
mah_pankaj26-Nov-09 18:52
mah_pankaj26-Nov-09 18:52 
QuestionProblem configuring PHP under IIS 6 and Windows server 2003 Pin
CrazyCoder2612-Nov-09 17:56
CrazyCoder2612-Nov-09 17:56 
AnswerRe: Problem configuring PHP under IIS 6 and Windows server 2003 Pin
Aman Bhullar12-Nov-09 19:38
Aman Bhullar12-Nov-09 19:38 
AnswerRe: Problem configuring PHP under IIS 6 and Windows server 2003 Pin
Marc Firth12-Nov-09 22:25
Marc Firth12-Nov-09 22:25 
QuestionError in configuring PHP under IIS6 Pin
CrazyCoder2612-Nov-09 17:51
CrazyCoder2612-Nov-09 17:51 
AnswerRe: Error in configuring PHP under IIS6 Pin
ranjan_namitaputra16-Nov-09 8:45
ranjan_namitaputra16-Nov-09 8:45 
QuestionJSP called directly Pin
Allan Larson12-Nov-09 5:48
Allan Larson12-Nov-09 5:48 
AnswerRe: JSP called directly Pin
Abhishek Sur12-Nov-09 10:57
professionalAbhishek Sur12-Nov-09 10:57 
GeneralRe: JSP called directly Pin
Allan Larson12-Nov-09 11:53
Allan Larson12-Nov-09 11:53 
GeneralRe: JSP called directly Pin
Abhishek Sur12-Nov-09 22:32
professionalAbhishek Sur12-Nov-09 22:32 
GeneralRe: JSP called directly Pin
Allan Larson13-Nov-09 5:54
Allan Larson13-Nov-09 5:54 
GeneralRe: JSP called directly Pin
Abhishek Sur14-Nov-09 23:47
professionalAbhishek Sur14-Nov-09 23:47 
Questionfade the background Pin
M.A.Raheem12-Nov-09 3:09
M.A.Raheem12-Nov-09 3:09 

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.