Ask a Question related to ASP, Design and Development.
-
Pete Lux #1
IIS server side script question
I'm very new at web programming, but I was working through an example from
Beginning VB.net and hit a wall. In the example, you setup 2 text boxes and
2 pushbuttons. All that happens is the text in the boxes changes when you
hit the pushbuttons, but one runs on the client, the other on the server.
I can get the client to fine, it's the server that isn't running. I'm
running IIS local on my machine, but I don't know if I have something
screwed up or not. I've modified the controls to be server-side controls and
then:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
txtServerTextField.Value = "Clik the button ==>"
End Sub
Private Sub btnServerButton_ServerClick(ByVal sender As System.Object, ByVal
e As System.EventArgs)
txtServerTextField.Value = "Server-Side processing performed"
End Sub
So you see it doesn't do much but when I open the browser, the "Clik the
button ==>" isn't showing nor does it change when I click the pushbutton.
Have I got something configured incorrectly?
Pete Lux Guest
-
Using XML class server-side script in FMS 3
Hi, I'm trying to use xml class in a script on the server 1. Should i use import XML? if so in which package is it in is it the same as... -
Execute a server-side script
My problem is a little unusual. I have a perl script that does this great job, but I want to make a flash interface for it. The thing is that I... -
Client Side Script interferes with Server Side Script?
I added the form validation script (Java Script) to the head section of my insert records form page which works great when tested but when I submit... -
[PHP] Server-side script identified as IE
(Quoting fixed) "Vchat20" <Vchat20@hotmail.com> said Yeah, that's what they all say. ;-/ I think most of the people who know how aren't... -
Server-side script identified as IE
no, I dont know how to do this, but I would like to know how. basically its a php script running on the server side. it is actually a parser script... -
Curt_C [MVP] #2
Re: IIS server side script question
I'd suggest a DotNet group...this one is ASP (classic) not .NET
--
----------------------------------------------------------
Curt Christianson (Software_AT_Darkfalz.Com)
Owner/Lead Designer, DF-Software
[url]http://www.Darkfalz.com[/url]
---------------------------------------------------------
...Offering free scripts & code snippits for everyone...
---------------------------------------------------------
"Pete Lux" <pete.lux@theheritagegrp.com> wrote in message
news:eOhZan9dDHA.2432@TK2MSFTNGP09.phx.gbl...and> I'm very new at web programming, but I was working through an example from
> Beginning VB.net and hit a wall. In the example, you setup 2 text boxesand> 2 pushbuttons. All that happens is the text in the boxes changes when you
> hit the pushbuttons, but one runs on the client, the other on the server.
>
> I can get the client to fine, it's the server that isn't running. I'm
> running IIS local on my machine, but I don't know if I have something
> screwed up or not. I've modified the controls to be server-side controlsByVal> then:
> Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles MyBase.Load
>
> 'Put user code to initialize the page here
>
> txtServerTextField.Value = "Clik the button ==>"
>
> End Sub
>
> Private Sub btnServerButton_ServerClick(ByVal sender As System.Object,> e As System.EventArgs)
>
> txtServerTextField.Value = "Server-Side processing performed"
>
> End Sub
>
> So you see it doesn't do much but when I open the browser, the "Clik the
> button ==>" isn't showing nor does it change when I click the pushbutton.
>
> Have I got something configured incorrectly?
>
>
>
>
Curt_C [MVP] Guest



Reply With Quote

