Click here to Skip to main content
15,889,403 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Callback & Masterpage Pin
minhpc_bk1-Oct-06 15:53
minhpc_bk1-Oct-06 15:53 
GeneralRe: Callback & Masterpage Pin
sbao0042-Oct-06 0:52
sbao0042-Oct-06 0:52 
GeneralRe: Callback & Masterpage Pin
minhpc_bk2-Oct-06 1:21
minhpc_bk2-Oct-06 1:21 
QuestionDifference between manual rendering and rendering by aspx Pin
thebread1-Oct-06 0:48
thebread1-Oct-06 0:48 
AnswerRe: Difference between manual rendering and rendering by aspx Pin
thebread1-Oct-06 21:35
thebread1-Oct-06 21:35 
GeneralRe: Difference between manual rendering and rendering by aspx Pin
minhpc_bk2-Oct-06 0:54
minhpc_bk2-Oct-06 0:54 
GeneralRe: Difference between manual rendering and rendering by aspx [modified] Pin
thebread2-Oct-06 4:13
thebread2-Oct-06 4:13 
GeneralRe: Difference between manual rendering and rendering by aspx Pin
minhpc_bk2-Oct-06 16:35
minhpc_bk2-Oct-06 16:35 
To work around the error of not being placed outside the server form element, you'll have two options here:

+ Extend the Page class, override the VerifyRenderingInServerForm method and leave it empty.
+ Extend the Calendar control and override the Render method to skip the calling to the VerifyRenderingInServerForm of the Page instance.

Below is the sample code for the first option which IMO is much simpler:
public class ExPage : Page 
{
    public override void VerifyRenderingInServerForm(Control control)
    {
        //Leave the method empty instead of 
        //making sure the control is not placed outside the server form.
    }
}




QuestionFYI WAP Link Pin
VickyC#1-Oct-06 0:35
VickyC#1-Oct-06 0:35 
Questiontree control in asp.net(c#) [modified] Pin
ptvce30-Sep-06 23:18
ptvce30-Sep-06 23:18 
QuestionPl Help - How to superimpose 2 images in ASP.net Pin
atulxxx30-Sep-06 22:00
atulxxx30-Sep-06 22:00 
QuestionAdjust to disable "Debugging Not Enabled" messagebox? Pin
pedestrian79730-Sep-06 17:35
pedestrian79730-Sep-06 17:35 
AnswerRe: Adjust to disable "Debugging Not Enabled" messagebox? Pin
e-laj30-Sep-06 18:11
e-laj30-Sep-06 18:11 
GeneralRe: Adjust to disable "Debugging Not Enabled" messagebox? Pin
pedestrian7971-Oct-06 17:02
pedestrian7971-Oct-06 17:02 
QuestionGridView and Images..........Anyone.............???/ Pin
sanju027630-Sep-06 16:13
sanju027630-Sep-06 16:13 
AnswerRe: GridView and Images..........Anyone.............???/ Pin
minhpc_bk1-Oct-06 15:41
minhpc_bk1-Oct-06 15:41 
QuestionJavaScript and Server Code Pin
Amit Kumar G30-Sep-06 11:06
Amit Kumar G30-Sep-06 11:06 
AnswerRe: JavaScript and Server Code Pin
Guffa1-Oct-06 0:38
Guffa1-Oct-06 0:38 
QuestionI can't use a Local Resource value Pin
shapper30-Sep-06 11:02
shapper30-Sep-06 11:02 
AnswerRe: I can't use a Local Resource value Pin
minhpc_bk1-Oct-06 15:35
minhpc_bk1-Oct-06 15:35 
QuestionUppercase Pin
shapper30-Sep-06 11:01
shapper30-Sep-06 11:01 
AnswerRe: Uppercase Pin
Guffa30-Sep-06 12:16
Guffa30-Sep-06 12:16 
AnswerRe: Uppercase Pin
albCode1-Oct-06 1:58
albCode1-Oct-06 1:58 
GeneralRe: Uppercase Pin
Amit Kumar G1-Oct-06 13:01
Amit Kumar G1-Oct-06 13:01 
QuestionBusiness Entity Set Pin
TheEagle30-Sep-06 9:38
TheEagle30-Sep-06 9:38 

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.