side

what are the best client side scripting languages out there?

I want something which can run purely on the client. I don't need any server interactions, database at most. Ive been using php but want a change, any suggestions? ...

GWT Toolkit: preprocessing files on client side

If there's a way for the client side GWT code to pre-process a file on the client computer? For example, to calculate a checksum of it before submitting the file to the server. ...

Implementing captcha in a stateless REST web-service environment

The project I'm working on is a piece of static HTML with some inline JavaScript that will call a REST web-service, which I'm creating myself using .NET 3.5 WCF. The JavaScript will grab some details from the user including an email address, then send those details off to the web-service through Ajax. The web-service will then store the...

ASP.NET Client side validation and Post back

I have an aspx page in which i have 3 asp.net text boxes and 1 asp.net button control.I want to do a client side validation before the post back happens when i click on the button . ie ; If the the page passes the validation check,then only i need to invoke the server side button click event.Can any one help me ? Thanks in advance ...

VS2008 and asp.net Microsoft Reports paging

Is it possible to make Microsoft Reports component use server side paging when displaying data. I had problems in the past with getting all the data from the database and then having client side paging implemented. large amounts of data were triggering out of memory exceptions on the server. So basically what I want is to use Microsof...

What are the best resources for learning how to avoid side effects and state in OOP?

I've been playing with functional programming lately and there are pretty good treatments on the topic of side effects, why they should be contained, etc. In projects where OOP is used, I'm looking for some resources which lay out some strategies for minimizing side effect and/or state. A good example of this is the book RESTful Web Se...

Download multiple files and zip them on client side programaticaly

I have a requirement to download multiple files from server and zip them into one file. So that user will to deal with only one file while downloading. We have files hosted in akamai servers, we want to download those files in client side, then zip them programatically and popup message asking user where they want to save the zip file...

Server Side Includes vs. ASP.NET Techniques is there a performance difference?

I was recently hired to update an ASP.NET 1.0 site, created before master pages were available. Hence the pages have server side includes (ssi) like <!-- #include file="footer.html" -->. I was about to update the *.aspx pages with a master page that contained the markup previously in the ssi's. I'm convinced this is the right thing to do...

Question on logistics of hashing at client

I have found a lot of posts on hashing at the client but none that quite answer my question. I would like to hash user passwords at the client so that I don't have to send a plain text password across the web but I have a question as to how i might do so successfully when using a salt. The normal procedure of validating a password is.....

printing image in java server side. open source

I need to be able to print barcodes from a web service. The numbers are stored on the server and need to convert them into an image and then print a barcode strait onto the printer without sending a print command from the browser. How can i do this. Is there a open source software out there ...

RADGrid Client-Side databinding and Grouping

Hi there, I have a radgrid on an MVC view which is client side binding to a JsonResult controller. I need to display the returned json data in a grouped format but cant find anything on the radgrid that does that. Ive checked out the documentation and there seems to be no mention of clientside grouping on radgrid. Can you please advise...

Server side include (ssi) if condition not working

the if contition is to test for the day of the week: <!--#if expr="$DATE_LOCAL = /Thursday/" --> Thursday <!--#endif --> this works if the .shtml is in a static location but, not inside a war. Yes the web.xml file has been configured correctly. as this <!--#echo var="DATE_LOCAL" --> works fine, for the .shtml page inside the war. i...

error in media wiki php code

$wgAuth = new HttpAuthPlugin(); - After this line, control is not reachin the next line, not printin the next log. error_log("JITEN TEST :WGAUTH object created, Value of wgAuth is :" . $wgAuth . "\n", 3, $logfile); $wgHooks['UserLoadFromSession'][] = array($wgAuth,'autoAuthenticate'); error_log("JITEN TEST :Value of wgAuth is :" . $w...

How do I make a side-scrolling iPhone app?

I am working on a side-scrolling iPhone app, and I have every resource, except the actual side scrolling part! How do I make an app so that it side-scrolls? To be more specific, I want the view of the app to scroll when a UIImageview(player) hits the right/left border of the screen. <:EDIT:> I am extremely sorry for all of this confusi...

ASP.NET Validation server side

Hi, I have an ASP.NET webform which I want to validate Client-Side and Server-Side, using the same validation controls. I can't seem to find the solution for this - the client validation works great, but when I disable javascript - It ignores the validation. Help would much be appreciated. Roman ...

Unable to call the server side event In the Flex Remoting

When my application connecting with the netconnection and with shared object application connecting fine but while connecting shared object they are not firing the server event like application.onAppStart = function() {} , application.onConnect = function(newClient, userName){} follwing are my code /// main.as Client.prototype.getServe...

UpdatePanel Javascript Error on Adding Clientside Listbox items After postback

Hi, I have a Dynamic list control of Metabuilder.Webcontrol inside UpdatePanel,I am adding removing Items using Javascript from the list control. It works fine Inside UpdatePanel. I have another control Gridview along with checkbox's which require postback to get populated. Once It gets populated successfully inside update without po...

How to display webcam on client side only?

I'd like to show a webcam inside a browser without any server interaction. Everything should happen client side with minimal plugins usage. This would replicate most default webcam software bundled with the cam itself. ...

Validation errors are visible when I access the page before I post the form

Hi, I have html validation using client side and server side validation. The problem is when I open the page the validation text is visible before I fill in the text box and post the form. What can I do the solve this issue? I'm using the following code: <script src="/Scripts/jquery-1.4.1.min.js" type="text/javascript"></script> ...

change Visibility of a control in ASP.NET code behind (c#)

How do you set the visibility of a (fileupload) control from ASP.net code (I need to hide a fileupload control in a webuser control from server site, otherwise hasFIle is always false). Also setting the "Visible" property to false does not work (as is confuses the AJAX panel so the fileupload forgets that it has a file). theFileUpload....