Hello Experts,
I need to run two web application in tomcat 6.0(Windows). My requirement is both applications should be in root folder to work.
Any clue where do I need to make changes to setting files ?
http://something.com:80/somedir/index.html?type=test;one=onevalue#nose
This is typical URI structure my question is what is "#nose" and how i can use/utilize it as web developer ?
Thanks all.
I have a DIV to be shown as modal dialog in my ASP.Net MVC project. This DIV has a textbox to accept user input. However, when I open the dialog with modal option set to true, it disables this textbox as well along with parent form controls!
How do I enable the controls on the dialog when open as modal?
<div id="assumption-block"…
I want to know what are the best links in a site are? It may be pagerank wise or popularity wise. For example http://www.pragprog.com is a site. I want to find out what are the most relevant links this site has. The links should not be external pointing links. It should be of the same site. Do google or any similar site can tell such…
I would like to do this because i have half installed service because of installation failure which is just there non functioning.
How can we remove the windows service using the command line ?
Hi All,
I am New to the iPhone Development. How can i carry a string value from view2 to view1 when using navigation bar. I have no problem in carrying string values from view1 to view2 to view3 to....by using pushviewcontroller But when i come back to previous views using Back button of navigation bar, I cannot able to hold…
Is there limitation for maximum number of files which can be uploaded in SharePoint location in one folder.
Is there limitation for maximum number of folders/sub folders which can be created in SharePoint location.
Whether specific naming convention is required to be followed for folder/file creation in SharePoint(Special…
I have a requirement to read JSON data in my application. Problem is that the JSON data that I am getting from the service includes "-" and when I am trying to read it, I am getting "Uncaught ReferenceError: person is not defined ". e.g.
I have below JSON object-
var JSONObject ={
"name-person":"John Johnson",
…
Whether JavaSript, C# or C++ main problem i face while reading the code is which function is called by which function. This problem is big when dealing with BIG code.
Is there any static code analysis tool/technique/plugins using which a graphical representation of the code can be generated(something like below) so…
I need to delete or hide the Img tag or its parent when Img have src="".
I have a script but it is not working..
window.onload=function(){
var imgs = document.getElementsByTagName("img");
for(var i = 0; i < imgs.length; i++)
{
var img = imgs[i];
if(img.src==""){
…
<input type="button" name="reset"
onclick="return ValidateValue(); __doPostBack('ApplyBtn','')" />
The above is the code generated for asp server button button control on browser.
Now my query is that irrespective of ValidateValue() returning true/false __doPostBack('ApplyBtn','')…
<a class="success" href="javascript:void(0)"></a>
//CSS for setting background for above link
a.success:hover{
//set background image
}
What my intent is to change the class of link on server side based on success/fail and set icon for the link accordingly. But above CSS is not…
Select user_name [User Name], first_name [First Name], last_name [Last Name]
Form tab_user
ORDER BY user_name
Select user_name [User Name], first_name [First Name], last_name [Last Name]
Form tab_user
ORDER BY User Name
Above are the two queries,
Is there any…
Hi all
I have a series of asp:ImageButtons and one asp:Image(Big). Clicking on each ImageButton should change the ImageUrl of asp:Image to a new ImageUrl. How can we handle this using one Javascript function. Because I dont wanna code ImageButton_Click for each and every…
Hi all
I have a scenario in which I need to design online keyboard with buttons implementing different mathematical functions in ASP.NET. For example
1) A button called "Fraction" Onclicking= should display A numerator and a denominator separated by '-' with empty…
I am trying following,
1. Get response using Ajax from the users selection which returns me the list of the radio buttons attributes as
2. Once i get the attribute list i am creating the radio buttons using createElement()
3. Then i am attaching the event to the…
Friends,
currently I dont have iphone to test and using Simulator for testing purposes. I am Just curious to know whether an application continues to run even after a phone call.. here i have no option to test this from simulator. If it terminates then how can i…
I have table cell which has class "cellActive". Which has following defination
.cellActive{background:"#DDDDDD"}
Now i am trying to read the background color property for the cell and it comes null/"".
var bgColor = cell.style.backgroundColor; // returning…