I like YUI's Tab, to use its look and feel for own tab like implementation we just have to include yui tabs CSS and use markups and css classes and done. example below,
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.0r4/build/tabview/assets/skins/sam/tabview.css" />
<ul class="yui-nav">
<li><a…
hi we are getting out of memory exception for one of our process which is running in unix environmnet . how to identify the bug (we observed that there is very little chance of memory leaks in our java process). so whatelse we need analyse to find the rootcauase
![alt text][1]Im am trying to test wcf method in C#. method return type is ilist. I need to catch that returned data in to an ilist and then i have to retrive each item from ilist. can some one send me a sample code how to do this?
I have a page where i have 4 tabs displaying 4 different reports based of different tables.
Now i get row count of each tabled using select count() from table query and display number of rows available in each table on the tabs. Now with each page post back 5 count() queries are executed (4 to get counts and 1 for pagination) and 1 query…
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 ?
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 character…
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",
"street":"Oslo…
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 that…
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…
<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','') function is not…
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==""){
…
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 fields. Just as we write fractions…
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 asp:ImageButton. This makes my…
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 difference…