Click here to Skip to main content
15,918,109 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Tally inntegration with .net Pin
Nanigarikapati14-Oct-12 6:07
Nanigarikapati14-Oct-12 6:07 
QuestionCrystal report VS2010 doesn't render text position properly in asp.net page Pin
Savun Cheam11-Oct-12 18:47
Savun Cheam11-Oct-12 18:47 
Questionwhich one is better wsdl proxy or web reference Pin
indian14311-Oct-12 8:04
indian14311-Oct-12 8:04 
AnswerRe: which one is better wsdl proxy or web reference Pin
n.podbielski11-Oct-12 22:49
n.podbielski11-Oct-12 22:49 
AnswerRe: which one is better wsdl proxy or web reference Pin
AspDotNetDev12-Oct-12 10:27
protectorAspDotNetDev12-Oct-12 10:27 
QuestionAutenticação Com FormsAuthentication - Não autentica!! Pin
Member 939216811-Oct-12 6:10
Member 939216811-Oct-12 6:10 
AnswerRe: Autenticação Com FormsAuthentication - Não autentica!! Pin
Wes Aday11-Oct-12 6:22
professionalWes Aday11-Oct-12 6:22 
AnswerRe: Autenticação Com FormsAuthentication - Não autentica!! - Translation Pin
Wes Aday11-Oct-12 6:24
professionalWes Aday11-Oct-12 6:24 
QuestionI am having error on my dbml (InternetTransaction Project) Pin
Difameg Network Nigeria10-Oct-12 22:26
Difameg Network Nigeria10-Oct-12 22:26 
AnswerRe: I am having error on my dbml (InternetTransaction Project) Pin
n.podbielski11-Oct-12 0:04
n.podbielski11-Oct-12 0:04 
QuestionHaving trouble updating INT field in MS SQL 2008 database Pin
Member 932884710-Oct-12 9:55
Member 932884710-Oct-12 9:55 
AnswerRe: Having trouble updating INT field in MS SQL 2008 database Pin
n.podbielski10-Oct-12 11:03
n.podbielski10-Oct-12 11:03 
AnswerRe: Having trouble updating INT field in MS SQL 2008 database Pin
.Net Jim10-Oct-12 12:08
.Net Jim10-Oct-12 12:08 
AnswerRe: Having trouble updating INT field in MS SQL 2008 database Pin
Bernhard Hiller10-Oct-12 22:25
Bernhard Hiller10-Oct-12 22:25 
AnswerRe: Having trouble updating INT field in MS SQL 2008 database Pin
Richard Deeming15-Oct-12 3:31
mveRichard Deeming15-Oct-12 3:31 
QuestionGoogle Analytics in site.master? Pin
Jassim Rahma10-Oct-12 7:36
Jassim Rahma10-Oct-12 7:36 
AnswerRe: Google Analytics in site.master? Pin
n.podbielski10-Oct-12 11:00
n.podbielski10-Oct-12 11:00 
AnswerRe: Google Analytics in site.master? Pin
SoyDesarrollador.net12-Oct-12 9:07
SoyDesarrollador.net12-Oct-12 9:07 
QuestionAsp .net Video Player Pin
ShashankUpadhyay10-Oct-12 2:06
ShashankUpadhyay10-Oct-12 2:06 
AnswerRe: Asp .net Video Player Pin
Sandeep Mewara10-Oct-12 3:04
mveSandeep Mewara10-Oct-12 3:04 
QuestionLabel Text wrapping problem Ms chart control. Pin
Murugan Kolanji10-Oct-12 1:50
Murugan Kolanji10-Oct-12 1:50 
AnswerRe: Label Text wrapping problem Ms chart control. Pin
Sandeep Mewara10-Oct-12 3:06
mveSandeep Mewara10-Oct-12 3:06 
QuestionSetting ASP.NET page controls from class library assembly Pin
Chesnokov Yuriy9-Oct-12 19:52
professionalChesnokov Yuriy9-Oct-12 19:52 
I use model view presenter approach for ASP.NET web site. The presentation part is compiled in separate class library where view contracts and presenters are defined:
C#
MyPresentation assembly
IMyView
{
     DisplayText(string text);
}
MyPresenter
{
     public IMyView View { get; set; }
     public DisplayText()
     {
         string text = Generate();
         View.DisplayText(text);   
     } 
}

MyWebApplication assembly
public partial class MyForm : System.Web.UI.Page, IMyView
{
    public void DisplayText(string text)
    {
        this.myLabel.Text = text;  
    }
    ...
    protected void myButton_Click(object sender, EventArgs e) 
    {
        Presenter.DisplayText(); // calls this.DisplayText()     
    }        
}

However after stepping out of Presenter.DisplayText() Text property of myLabel becomes null again as though no assignment were done. By all means if you replace the only line in myButton click event with direct setting of myLabel Text property everything stays assigned.
Чесноков

QuestionRe: Setting ASP.NET page controls from class library assembly Pin
n.podbielski10-Oct-12 3:38
n.podbielski10-Oct-12 3:38 
AnswerRe: Setting ASP.NET page controls from class library assembly Pin
Chesnokov Yuriy10-Oct-12 4:50
professionalChesnokov Yuriy10-Oct-12 4:50 

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.