Jscript, moving from client-side to server-side (.NET)
Hey all
I’m working translating a web-app written in client-side
Jscript to run on the server-side as JScript.NET. Without needing to get too
specific, I am using Jscript because the original page aggregated raw data to
produce statistical results (this was done dynamically based on user 'sort-by'
options). The final output is an html report that can be emailed.
Because this is currently being done on the client side, as
the raw data grows the load-time grows as well (to the point that has almost
become unusable). I’m posting here to see if anyone has any experi...
Validation Controls in .NET ( Client side or server side?)
i have a very basic question. We have all these validation controls in asp.net ( required field, range validator and others)..my question is the required field validator is a server side control. So does that mean that it does a post back?..is it client side or server side control
The only controls that post back are buttons and other inputs where you set AutoPostback="True", such as a dropdownlist or a textbox. Another way of posting back is using an UpdatePanel and placing a trigger in it for a specified control and/or event.
All controls are considered clien...
client-side scripting or server-side scripting
I want to perform data validation in my page using javascript before
the data is sent to my server, but I am very confuse that I don't know
which way to perform, client-side validation or server-side validation?
My javascript bible told me that javascript is a client-side scripting
for data validation in client pc, but when I look in my asp.net bible,
the validation part is done at server side.
The worst is that, I find no way to use javascript in .asp or .aspx environment.
I am really confuse with all these, could any one help me on this? Thanks.
Use .NET validator co...
When to use client side varidation and server side varidation in .net?
In .net or classic web application we can varidate user data either on client isde or server side. How to select which side varidate to be used? Thanks!
Generally, I use both client and server validation. I make sure the input is in the correct format and reasonably valid on the client, then I verify the data on the server. The extent of validation also depends on the type of data that I need to validate.Here are a few references:Validating ASP.NET Server ControlsIntroduction to Validating User Input in Web FormsClient-Side Validation for ASP.NET Server ControlsSecurity Checklist...
Difference between client side scripting and server side scripting
Hi,
Can u plz, explain why the server side
scripting is necessary, inorder to write the client side scripting.
What is the main difference between the client side scripting and
server side scripting.
Client-side scripting is code that is executed on the client side, such as JavaScript. Server-side scripting is code that is executed on the server, such as VB, VB.NET, C#, or J#. For a better definition of server-side scripting and when it's necessary, please visit http://en.wikipedia.org/wiki/Server-side_scriptingRyan OlshanASPInsider | Microsoft MVP...
Client-Side scripting vs Server-Side scripting
hello
I need an article that spaeks about Client-Side scripting vs Server-Side scripting,and when i need to use one of them
thank you for the help and for the time
here are some good links to a bunch of articles on that subject...
client side script Vs Server side Script
Which is better ?
Using Client Side validations with Java Script or Using Server Side validation controls provided in asp.net
You should use both... Client-side for a rich user experience and server-side to support browsers without javascript support or with javascript turned off....
Call server-side script from client-side scriptHi to all,
I would like to ask you How can i call from client-side script a
server-side script and to have the result from the server-side script
in the client-side script. For example, i wand to call a function
writing in server-side (DynaScript) script from a client-side script
(JAVASCRIPT) and to have an answer from the function.
Thanks in advance.
Nick,
One way that you could get round this is to write your client script code
as you would server script eg.
<SCRIPT language=javascript>
function getValue()...
would be written as:
<%
psDocument.WriteLn(&...
How to call a client side script from a server side script?
Hi guys,
I have a Button1_Click function which gets executed on the server side as soon as Button1 is clicked. I have a client side function, test, which is written in vbscript. I need to call this test function from the Button1_Click function. Can anyone of you please tell me how to do this?
The test function is inside an asp:content tag (Please excuse my terminology if I am wrong, I am new to all this).
Thanks and Regards,
RJ
Have you tried to use the below code
Button1.Attributes.Add("onclick","test()");
HCHaissam Abdul MalakMCAD.NET| Blog |
Yes, ...
Client-Side and Server Side Scripting
Hi, im currenty in the process of trying to get an asp.net page to work with both <script> and <script runat="server" tags...
idea being, i have a <script> tag which holds all the client side scripting for my webpage, at the moment this is just some slider controls which i have created (the scripting behind this is actually from someone on a different forum, which i have modified to do what i want..) - but i also want a <script runat="server"> tag to hold all the code for the buttons pressed etc in my web-page.
im trying my hardest not to use a ...
Acessing Variable, declared in the client side script, from the server side scriptI'd like to know how can I use variables declared in the client side
script from the server side script.
Thanks!
You cannot. The only way is to pass them as arguments to the server-side
script.
--
Larry Cermak [Team Sybase]
Corporate Technology Partners
EAServer Training & Consulting
Coming Soon: Web DataWindow Book
Web DataWindow Articles: http://my.sybase.com/detail?id=1003371
"Jeong-Su, Hwang" <hjs@i4biz.co.kr> wrote in message
news:s9YmFSfKAHA.201@forums.sybase.com...
> I'd like to know how can I use variables declared in the cl...
Acessing variables, declared in the server side script, from the client side scriptI'd like to know how can I use variables declared in the server side
script from the client side script.
P.S.: I'm using JavaScript in the server side script and in the client
side script. I don't like to use ASP.
Thanks!
One example that come to mind:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=windows-1252" http-equiv="Content-Type">
<META name=GENERATOR content="MSHTML 5.00.2919.6307">
<SCRIPT language=JavaScript>
...
how to get value from client side script Prompt window to a session var in .net
hi guyz,
i hav a problem with getting a value from a client-side inputbox to a session var in .net.
is this possible?
however, when i click submit button this is the code that's triggered.
dim sb as New System.Text.StringBuilder
sb.append("<script language=" & """" & "vbscript" & """" & ">")
sb.append(vbcrlf)
sb.append(vbcrlf)
sb.append("do while xLate =" & """" & """")
sb.append(vbcrlf)
'//prompt window, val...
Server side Variable in client side scriptHello,
I want to access the variable defined in the server side script
from the client side.
Can anyone help out with an example ???
TIA,
Rakesh Babaria
I think what you do is write is as a java script variable, so something like
this:
<!--SCRIPT
var ls_serverVar
ls_serverVar = "whatever";
document.writeln("<SCRIPT language=JavaScript>");
document.writeln("var xyz = " + ls_serverVar);
document.writeln("</SCRIPT>");
-->
Then in your client script, you'll be able to get XYZ.
...