Tagged Questions

0
votes
2answers
171 views

EnableClientValidation on Master Page

I'm trying out ASP.NET MVC 2 Preview and when I use client side validation it all works if the following: <% Html.EnableClientValidation() %> Is used on a content page. If it is on a Master Page …
0
votes
3answers
954 views

Print directly from browser without print popup window

Hi Everyone, As it said in the subject I've to create a feature for a web-based application that will allow users to send print directly without prompting any dialog boxe just make the print i.e …
0
votes
1answer
109 views

Implementing custom logging of WCF messages client-side

A collegue of mine needs to implement custom logging of WCF messages, for debugging purposes, but also for traceability (logged data will be saved for future reference and verification). Examples …
0
votes
3answers
155 views

Client Side Validation for different control events

Hi, I have a custom validator attached to a textbox control as follows <td align="center" width="10px"> <asp:CustomValidator ID="validateDateText" ControlToValidate="dateTextBox" …
0
votes
3answers
347 views

Asp.Net Rating Control

Hi, I can't get the ASP.NET Rating control's selected value(Current Value) in javascript. I am using Rating control in datagrid and do you know how I can get the CurrentValue of ASP.NET Rating in …
1
vote
1answer
125 views

Reporting Services Client side

I need to compose a report using multiple subreports, "chained" together at runtime in a C# Forms project. The subreports each represent a subtest of a product, and the data needs special formatting …
1
vote
3answers
252 views

Ruby: client-side or server-side?

Is Ruby client- or server-side?
2
votes
2answers
1k views

Client side Callback in GWT

I'm trying to create a logger for a GWT application as an exercise to evaluate GWT. What I specifically want to do is have it so that I can post messages to a client side label at any point from the …
0
votes
4answers
886 views

Is a Session ID generated on the Server-side or Client-side?

This web page http://www.w3schools.com/ASP/prop_sessionid.asp states that a session ID is generated on the ServerSide. If this is the case, then how does a server know it's still the same client on …
2
votes
5answers
111 views

What would cause ASP.NET validators not to trigger on a deployed site?

Locally it works, I know its the "it works on my machine" syndrome but i cant see why. Simple web page, fields, required field validators, such as <asp:textbox id="tbEmail" runat="server" …