Ask a Question related to ASP.NET General, Design and Development.
-
Daniel Bass #1
Re: Newbie - UserInteractive Property
you can't have msgBox....
The first thing to distinguish between is what is server side and what is
client side...
Server side is what is processed by the pc on which the website is hosted.
you can choose, for example, to have all the complicated algorithms here if
you know you've a beefy machine, but tihnk the people looking at the site
may have the first Pentium's. So you ask the server to do all the work, and
simply send the data to the client (viewer) which they then display.
Or you can decide that there'll be loads of people looking at a site, which
then causes you to think perhaps asking the client to do the work will speed
up the continual requests to the server.
What your msgbox command does is ask the server (realise that everything in
the code behind page is server side) to display a message box... so if you
were able to even get it to work, it would post a msgbox on the server's
screen in a building 5000 miles from the client, and the client would get
nothing.
good luck in your quest, i'm a relative newbie two (few months) to ASP and
..net, coming from VC++. Once you get your head around server/client and who
calls what etc, it gets easier.
"nbotw" <nbotw@world.net> wrote in message
news:uSq2sPOVDHA.1832@TK2MSFTNGP09.phx.gbl...VB;> Hi,
>
> I´ve just finished installing .NET on my machine and after creating a new
> ASP .NET project i wrote a "hello world" msgbox sentence on page_load in> but i receive an error with the property of the subject.
>
> I´ve been looking for the solution in msdn but nothing ...
> I am sure this must be a nonsense, but please help.
>
> Thanks in advance
>
>
Daniel Bass Guest
-
#29234 [Com]: empty($object->property) incorrect when property has access overloaded (__get)
ID: 29234 Comment by: phpbugs at thunder-2000 dot com Reported By: chrissy at codegoat dot com Status: No... -
Custom Attributes (AttributeTargets.Property) and Property Type
Hi I've create a custom attribute class "MyAttribute" with Is there a way to get the type of the property myAttribute is applied to? I... -
using the Items property in the design time property window
I hope this is the proper forum. I posted this problem in the wrong one previously. I have a custom server control that I am building. Implementing... -
Collection Property problems with Image control ImageUrl property and URLBuilder
Been using reflector and examining what Microsoft does with the Rows property in the Table class. It looks like all of the items added to the rows... -
More Collection Property problems with Image control ImageUrl property and URLBuilder
After a few more hours of debugging I discovered that the URLBuilder solution that I mentioned previously does not work because there is no service... -
Marina #2
Re: Newbie - UserInteractive Property
Popping up a message box, means it would be popped up on the server. Not on
the client.
ASP.NET code in the end, builds some HTML, and sends that to the client. The
browser receives that, and displays it. Any client side scripts embedded in
the HTML are run.
So you would have to generate javascript, that would then get down to the
client (once the page was all done with the server side stuff), and then the
client would see the message box.
"nbotw" <nbotw@world.net> wrote in message
news:uSq2sPOVDHA.1832@TK2MSFTNGP09.phx.gbl...VB;> Hi,
>
> I´ve just finished installing .NET on my machine and after creating a new
> ASP .NET project i wrote a "hello world" msgbox sentence on page_load in> but i receive an error with the property of the subject.
>
> I´ve been looking for the solution in msdn but nothing ...
> I am sure this must be a nonsense, but please help.
>
> Thanks in advance
>
>
Marina Guest
-
nbotw #3
Newbie - UserInteractive Property
> Hi,
VB;>
> I´ve just finished installing .NET on my machine and after creating a new
> ASP .NET project i wrote a "hello world" msgbox sentence on page_load in> but i receive an error with the property of the subject.
>
> I´ve been looking for the solution in msdn but nothing ...
> I am sure this must be a nonsense, but please help.
>
> Thanks in advance
>
>
nbotw Guest



Reply With Quote

