Ask a Question related to ASP.NET General, Design and Development.
-
Edmilson #1
How to brake a label server control ?
Hi,
My aspx page has a label that is too long and I´d to brake this in
multiline:
Now, its is working like this: hey it´s just an example
105 - There is an error here. Pay attention. Look this again.
And, I want something like this:
105 - There is an error here.
Pay attention.
Look this again.
tks
ed
Edmilson Guest
-
Tracking value change in Label control
Hi, Is there any way to determine the bindable value change in a Label control automatically and fire any function upon that? Thanks! ASB. -
Creating my own label control
I need to enhance the label control by adding a small icon to the right that when clicked will run something for the user. How do I do this? I... -
positioning label+textbox in user control
Hi, i want to create a server-site usercontrol to logon a database: It should be very simple but i cannot get the label en textbox in the write... -
brake up a string
Hi! I have a string I have to break up in several strings. THe string looks like this: 39-Fagleder,38-Eier,42-Avdelingsleder,37-Etelleranna... -
Why no align property on Label Web Control?
Hi, I'm just curious why the HTML label has an align property while the Web Control Label does not? Thanks, Terry -
Sreejumon[MVP] #2
Re: How to brake a label server control ?
Hi,
You can use <br> tag inside your label test. Please try like this.
105 - There is an error here.<br> Pay attention.<br> Look this again.
--
Let me know if you need further help
Regards
Sreejumon[MVP]
DOTNET makes IT happen
"Edmilson" <troqui@padtec.com.br> wrote in message
news:eGGwD$lQDHA.3192@tk2msftngp13.phx.gbl...> Hi,
>
> My aspx page has a label that is too long and I´d to brake this in
> multiline:
>
> Now, its is working like this: hey it´s just an example
> 105 - There is an error here. Pay attention. Look this again.
>
> And, I want something like this:
> 105 - There is an error here.
> Pay attention.
> Look this again.
>
> tks
> ed
>
>
Sreejumon[MVP] Guest
-
Edmilson #3
Re: How to brake a label server control ?
how can I do this ?
Catch exc As SqlException
lblMessage.Text = "105 - There is an error here. " + exc.Number.ToString +
" - " + exc.Message.ToString
Finally
it doesn´t work...
"Sreejumon[MVP]" <sreeju_uss@hotmail.com> escreveu na mensagem
news:eYQAmJmQDHA.3192@tk2msftngp13.phx.gbl...> Hi,
>
> You can use <br> tag inside your label test. Please try like this.
> 105 - There is an error here.<br> Pay attention.<br> Look this again.
>
>
> --
> Let me know if you need further help
>
> Regards
> Sreejumon[MVP]
> DOTNET makes IT happen
>
> "Edmilson" <troqui@padtec.com.br> wrote in message
> news:eGGwD$lQDHA.3192@tk2msftngp13.phx.gbl...>> > Hi,
> >
> > My aspx page has a label that is too long and I´d to brake this in
> > multiline:
> >
> > Now, its is working like this: hey it´s just an example
> > 105 - There is an error here. Pay attention. Look this again.
> >
> > And, I want something like this:
> > 105 - There is an error here.
> > Pay attention.
> > Look this again.
> >
> > tks
> > ed
> >
> >
>
Edmilson Guest
-
David Waz... #4
Re: How to brake a label server control ?
uh, how about <BR> :-)
or put it in a table with a fixed width, and allow wrap.
"Edmilson" <troqui@padtec.com.br> wrote in message
news:eGGwD$lQDHA.3192@tk2msftngp13.phx.gbl...> Hi,
>
> My aspx page has a label that is too long and I´d to brake this in
> multiline:
>
> Now, its is working like this: hey it´s just an example
> 105 - There is an error here. Pay attention. Look this again.
>
> And, I want something like this:
> 105 - There is an error here.
> Pay attention.
> Look this again.
>
> tks
> ed
>
>
>
David Waz... Guest



Reply With Quote

