Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is the difference between serverside scripting and
browser side scripting?

Answers were Sorted based on User's Feedback



what is the difference between serverside scripting and browser side scripting?..

Answer / sowmya reddy

Browser script is used for
-> Communication with the user
-> Interaction with the desktop applications
-> Data validation and manipulation limited to the current
record

Where as Server script is used for:
-> Query, Insert and Update operations
-> Access to data beyond the current record

Is This Answer Correct ?    34 Yes 4 No

what is the difference between serverside scripting and browser side scripting?..

Answer / charan

browser side scipt is communication with the user nd sever
side script is used 4 insert , upadate or delete nd query
operations

Is This Answer Correct ?    15 Yes 1 No

what is the difference between serverside scripting and browser side scripting?..

Answer / yudhvir mor

Browser scripting is not a part of SRF and Server scripting
is a part of SRF. This is an main difference. Further,
Excess use of server scripting causes performance issues
with application

Is This Answer Correct ?    16 Yes 7 No

what is the difference between serverside scripting and browser side scripting?..

Answer / gangadhardatla

browser scripting is usually done in the case when we
don't need database interaction.. mostly validation case.
for server script,the time consumed for a request will be
longer as the request hasd to go to the server to process
which is not in the case of "Browser" scripting.Hence the
performance goes down if we have more of server scripts in
your system.
Mostly the vanila features are to be best utilised to avoid
server script.

Is This Answer Correct ?    6 Yes 0 No

what is the difference between serverside scripting and browser side scripting?..

Answer / tabrez

Browser scripting is usaully done in the case when we don't
need database interaction.. mostly validation case.
For Server script, the time consumed for a request will be
longer as the request has to go to the server to process
which is not in the case of server scripting.
Hence the performance goes down if we have more of server
scripts in oyr system.

Is This Answer Correct ?    10 Yes 5 No

what is the difference between serverside scripting and browser side scripting?..

Answer / vikram manni

Browser scripting is usaully done in the case when we don't
need database interaction.. mostly validation case.
For Server script, the time consumed for a request will be
longer as the request has to go to the server to process
which is not in the case of "Browser" scripting.
Hence the performance goes down if we have more of server
scripts in your system.

Mostly the vanila features are to be best utilised to avoid
Server Script.

Is This Answer Correct ?    6 Yes 4 No

what is the difference between serverside scripting and browser side scripting?..

Answer / vignesh

we will be use escript on server side and vb script on
brower side.Browser scripting is not a part of SRF and
Server scripting is a part of SRF. This is an main
difference.
Further,Excess use of server scripting causes performance
issues with application

Is This Answer Correct ?    2 Yes 7 No

Post New Answer

More Siebel Interview Questions

defination of siebel crm?

3 Answers   IBM,


in a three level hierarchial picklist say country,state,city how do we perform pickmap 2)say if we have values same for country (having value 'A') and for state (having value 'A') and for city having value 'B' and in parent Lic we give value for city as 'A' how do it recognise it as State any other solution

0 Answers   IBM,


Which etl tool you used for data loading?

0 Answers  


How do you control visibility in Siebel?

3 Answers   HP, VCSS,


Explain how to import list of values?

0 Answers  


Why is it not recommended to modify existing base tables?

1 Answers   Siebel Systems,


This is krishna, I created new Table,Bc,Link,Bo,view,screen TABLE : CX_ECB_S_TAT BC : ECB TAT BC Link : ECB TAT BC/Service Request Bo : ECB TAT BO View : ECB TAT View Screen : ECB TAT Screen and I created new "X_ECB_TAT_ID" Column for foregin key relation ship in "S_SRV_REQ" Table [in colum properties I specified Forieignkey Table-CX_ECB_S_TAT] and I created "TAT Id Ext" Field with "X_ECB_TAT_ID" Column in "Service Request" BC. I created Link"ECB TAT BC/Service Request". in this link I specified "Destination Field-TAT Id EXT".( Parent BC : ECB TAT BC, Child BC : Service Request) --------------------------------------------------- There is two Screens 1)ECB TAT Screen 2)Service Request Screen in First Screen : ECB TAT Screen Parent BC : ECB TAT BC Fields : Type,Area,Sub Area,TAT I given the field values to Type,Area,Sub Area and based on field values I given "TAT" field value. now we will go to Second Screen : Service Request Screen Child BC : Service Request Fields : INS Product,INS Area,INS Sub-Area,TAT I given same values(Parent bc Field Values) to INS Product,INS Area,INS Sub-Area then should be update "TAT" Field value (I mean Parent BC same "TAT" Field vaue should be update in "TAT" Field in Child BC) I wrote script for above requirement in "SetFieldValue" Event in "ECB TAT BC" function BusComp_PreSetFieldValue (FieldName, FieldValue) { if(FieldName == "TAT") { var Bo = TheApplication().GetBusObject("ECB TAT BO"); var Bc = Bo.GetBusComp("Service Request"); this.ActivateField("Type"); this.ActivateField("Area"); this.ActivateField("Sub Area"); this.ActivateField("TAT"); var sType = this.GetFieldValue("Type"); var sArea = this.GetFieldValue("Area"); var sSubArea = this.GetFieldValue("Sub Area"); var sTAT = FieldValue; //this.GetFieldValue("TAT"); var Bc1 = Bo.GetBusComp("Service Request") with(Bc1) { var exp = "[INS Product] = '" + sType + "' AND [INS Area] = '" + sArea + "' AND [INS Sub-Area] = '" + sSubArea + "'"; ActivateField("INS Product"); ActivateField("INS Area"); ActivateField("INS Sub-Area"); ClearToQuery(); SetViewMode(AllView); SetSearchExpr(exp); ExecuteQuery(ForwardOnly); var cnt = CountRecords(); ActivateField("TAT"); var fst = FirstRecord(); while(fst) { SetFieldValue("TAT",sTAT); fst = NextRecord(); } } } return(ContinueOperation); } but in "Service Request" BC "TAT" field value updating existing records,not updating creating new necords. I should update "TAT" field value to creating new records. where I have to write script in which event in which BC for this. please post detail script for this. from last 15 days i'm working on this. please help me on this. thank you so much in advance.

2 Answers   Ecobank,


What is the process of configuring siebel 8 web virtual server?

0 Answers  


What is the procedure to configure the static caching using the content group?

0 Answers  


I need sibel crm testing questions

1 Answers  


i have two business components but iwant to make visible applet to only one business component

0 Answers   Mphasis,


Explain what is foreign key table in siebel?

0 Answers  


Categories