|
Suppose I have two tables A and B and each one has only 1 column.
Each row in table A corresponds to each row in B, but I don't want them to be in one table.
A B car automobile bike train
When I sort A alphabetically I should get
A B bike train car automobile...
Started by Asterisk on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you written the....
SortingModule.sort( document.getElementById('table-a') ); sortingModule.sort( document.getElementById('table-b') );
I think you need to give us more details .
Surely, this is as simple as two calls, assuming a sufficient abstraction .
|
|
I want to call two functions on same event 1 is client side and other 1 is server side. How can i do that
<input type="text" ID="txtUserName" runat="server" maxlength="50" class="DefaultTextbox" style="width:180px;" value="" onfocus="ControlOnFocus...
Started by Shantanu Gupta on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If using web forms, you want to post back to the server to process a server-side event, you can use a server side event to output (GetClientResourceUrl I believe or named similarly) this, but I like.
|
|
I have a combination of client-side technologies creating PNG data in the browser. Is there a way to convert the PNG data to GIF for display in IE without sending the data to the server? Wondering if there is an existing JavaScript library that will parse...
Started by JR on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Doing this would be like....
Is it feasible or a good idea? Hell no.
JavaScript is Turing-complete, and I suppose one might be able to get around browser restrictions by outputting an <img src="data: ..." /> sort of format .
Is it possible? I suppose.
|
Ask your Facebook Friends
|
For web application development, I've been steeped in dynamic languages such as Ruby, PHP, and Python. Using popular frameworks for these languages, all my knowledge about HTML, CSS, and JavaScript transfers fairly straightforwardly: templates are basically...
Started by allyourcode on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You side, why would you use it on the client when it's effectively an abstraction over JavaScript anyway?
There is no requirement....
Server side component that can generate JSON ( or other supported serialization methods ) will work.
|
|
Hello,
I have a listener that returns a TcpClient that must read data until the other side closes or until we stop.
I have created a simple Form with two buttons. One starts one connection and the other stops it.
The problem is that when I have a IOException...
Started by SoMoS on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
That way the TimeoutException won't happen, and you will still be able to reuse the TcpClient
I... .
Rather than trying to Read from the stream and catch a TimeoutException , you could check the Available property to know whether there is data to be read .
|
|
Hi Guys,
I am trying to collaborate with a graphic designer sitting on the other side of the world. The only communication medium we have is a phone line. Every time she makes even a minute change to an element on a page, she has to take a screenshot,...
Started by Crimson on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
We also have a defined.
We use a lot of Microsoft Shared View to see each other's desktops.
I take it the other side does not have a permanent internet connection?
In that case in Auckland).
Desktop tools.
|
|
I've just come across some code that's confusing me slightly; there are really 2 variations that I'd like to clarify.
Example 1:
public String getFilepath(){ final File file = new File(this.folder, this.filename); return file.getAbsolutePath(); }
What...
Started by froadie on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Some coding conventions advocate having all variables final unless they need to be mutable so you'll see code like that when someone is... .
It has no meaning outside the method.
Final in this case just means that the local reference file will be immutable .
|
|
I've seens this in various places,
during chat,I can see whether the other party is typing or not .
How do implement this most easily?
Answer Snippets (Read the full thread at stackoverflow):
The server then either pushes information to other clients, or else the other clients poll.
Then, on user B's side, use polling or comet to ask the server what event.
The server that he stopped.
|
|
In your opinion and from what you have learned about Adderall side effects, what are some other fairly common side effects not found in the below list of common Adderall side effects?
-Lack of appetite
-Headache
-Inability to fall asleep and stay asleep...
Started by Traveler5 on
, 6 posts
by 3 people.
Answer Snippets (Read the full thread at addforums):
Is this....
Could TMJ (jaw clenching, ear and sinuses are well.
My back will hurt once a week vs everyday or other day
I do get the head-aches, usually and/or diarrhea are another possibility, along with other symptoms of dehydration.
A lot.
|
|
When creating a unit test for a class that uses the HttpContext.Current.Cache class , I get an error when using NUnit. The functionality is basic - check if an item is in the cache, and if not, create it and put it in:
if (HttpContext.Current.Cache["Some...
Started by Tai Squared on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
The way to do this is to avoid direct use of the HttpContext or other similar.
To the cache object.
|