Home » Programming

ASP.NET Required Field Validators

Question:
Hello,
I’m using a asp.net required field validators for various fields in the form and I’m using a master page . I have a search bar above form. I’m unable to use the search form due to the require field validators.
When ever I type search I’m asked for the required fields. How do I make sure [...]

reporting services

Question:
I have a report in reporting services (. Rdl). My question is: how I can call the report from an application in asp.net (eg from a button)
Solution:
http://www.dotnetheaven.com/UploadFile/ursbgiri/106012007065515AM/1.aspx

Help comine Jquery Tools and Jquery UI script

Question:
Hello,
Newbie to jquery, need assistance. I would like to combine multiple scripts into a single script. Using Jquery Tools (http://flowplayer.org/tools/),I would like the tooltip function and the scroll function. Demos for these are here; Scroll – http://flowplayer.org/tools/demos/scrollable/,
Tooltip – http://flowplayer.org/tools/demos/tooltip/dynamic.html . In addition to these I would also like to incorporate the Jquery UI dialog box [...]

RE : Continuing DHTML

Question:
Continuing to the previous question which Skrile is handling.
I would like to have designing tabs through CSS which will be easy to implement as per the answer given for my request.
My request as below:
1) Designed Tabs through CSS and will be configurable (if possible)
2) Paging numbers within the tab along with working paging as per [...]

Where to copy DLL files when publishing a C# project

Question:
I am trying to publish an application written in VS2008. It needs 2 DLL files added to the application folder. The project builds and runs fine in the IDE but after publishing it won’t run and when debugged it says it can’t find the 2 DLLs. Where exactly are they supposed to be located?
Thanks in [...]

use TSQL to assign value to a variable

Question:
Hi,  Expert
My database is using SQL server 2008; and I am using C#
I would like to select something from a table and then assign to a either string or integer varialbe
My plan is only select 2 values(rows) from a column . So I use “select top 2 [column_A] from table_X
how can I assign the return [...]

Freelancer Payment Term

Question:
Hi
Planned to hire a freelancer, normally how are the payment terms?
I have seen some company stating zero upfront payment..
This will definitely good for the company, but i doubt freelancer is willing to accept…
Solution:
I guess it all depends on the amount of work and the length of the project, but I am good with these two [...]

Removing Duplicates from List

Question:
I have a list that contains addresses.  I need to remove duplicates based on the state, zip, and county
the list<string[]> is (Address1, Address2, City, State, Zip, County)
How would I accomplish searching for that?
Solution:
Same thing still applies.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
List<string[]> list = new List<string[]>();
string[] arr1 = { “one”, “two”, “two”, [...]

cannot seem to set width of a column in a table in a .jsp page

Question:
I want to fix the width of a column but that doesn’t seem to work.
The value in the column has no spaces, so it’s one giant string.
I tried to fix the width like this:
<td width=”50″ wrap>${ls.targetColumnName}</td>
but as you can see in the attachment, it still stretches out.
Solution:
Use the below css entry for that cell
<td style=”word-wrap: [...]

java.lang.LinkageError: loader constraint violation

Question:
I am getting following exception while deploying application on jetty server using maven.(mvn -o jetty:run -u)
java.lang.LinkageError: loader constraint violation: loader (instance of org/mortbay/jetty/webapp/WebAppClassLoader) previously initiated loading for a different type with name “javax/management/MBeanServer”
How to resolve this.?
/manish
Solution:
typically same class being loaded by different classloaders
check the jars that are part of your war are not already supplied [...]