|
Thanks. I get the idea.
thanks in advance. Much appreciated.
|
|
|
|
|
Hi,
I gotto show the contents of the columns in rows format and that too only 4 items in a row the next item should be displayed in next row.
Rizu
|
|
|
|
|
You can use datalist for this purpose. There you are having the facility to show the rows as columns wise.
Best Regards,
Apurva Kaushal
|
|
|
|
|
Hi Apurva,
But what about the four items in row,can we done this in datalist.
Thanks & Regards,
:-DRizwan
|
|
|
|
|
yes there is a property called Repeatcolumns you just need to set that to 4, after that it will repeat after 4.
Best Regards,
Apurva Kaushal
|
|
|
|
|
Hi Apurva,
Thanks for that , i was trying this from past 3 days.
Thanks again
Thanks & Regards,
:-DRizwan.
|
|
|
|
|
Always welcome
Best Regards,
Apurva Kaushal
|
|
|
|
|
hi apurva...
this is aavesh..
hav u used subdomain..
i'm not getting the funda behind it
thanx
Aavesh
|
|
|
|
|
Hi aavesh,
Actually i have never worked on subdomain. but if i am understanding your problem correctly then probably your problem can be solved by URL rewritting. Is it so?
Best Regards,
Apurva Kaushal
|
|
|
|
|
hi
thanx for replying..
may i ask u how much exp. u hav & right now where r u working.....
thanx
|
|
|
|
|
Why those questions?
By the way right now i am in hyderabad and working for choice solutions and having 3+ yrs of exp(not all on dot net).
Best Regards,
Apurva Kaushal
|
|
|
|
|
hi apurva mam
don't take me otherwise..
i just want to know that is there any requirment in ur company for
dotnet programmers i hav 1 year experience in dotnet.
i'm working in delhi.
thanx
|
|
|
|
|
First of all buddy i must tell you that i am not at all "mam" I am a "man".
are you trying to rellocate to hyderabad. These days the market is quite good and if you put your resume to any job portal then certainly you will get some calls. And also if i will get something i will let you know also.
Best Regards,
Apurva Kaushal
|
|
|
|
|
thanx man..
i put my resume on job portal didn't get any reply..
by the way thanx for reply..if u get to know any job then plz reply me
thanx
|
|
|
|
|
Hi to all,
I struck at a problem. I have two application which running on two different server.
I have the App1 and App2; with two different shared folder shr1 and shr2 respectively. I am uploading some files from app1 to shr1.
Now, from the App1 (let's say button click ) , I have to transfer all files from shr1 to shr2.
so Can anybody give me an idea how to solve this OR can I get the list of Objects which I can use ?
Naishadh
|
|
|
|
|
Are these two servers on the same network? If they are it should be fairly simple to copy files from one folder to another using the same File.IO classes that you used when uploading the file. If not, then you could create a web service on the receiving server that would take a byte array (your file data) as a parameter and pass the files over in that fashion.
|
|
|
|
|
Hi to all,
I'm a newbie in ASP.net......
I want to develop a search system like it is in the help of any microsoft product.....the thing is that , we hav to track the keypress event of the textbox.....i came to know that this part would be done better using javascript....how to do it?...please help...i need it urgently......
|
|
|
|
|
here is very basic example for keypress event script
document.onkeypress = KeyPress;
function KeyPress(e){
document.form1.textbox.value=window.event.keyCode;
}
hope this will help
Nav.
|
|
|
|
|
Hello
I'm trying to develop a web site which should implement a very high performance Drag N' Drop technology – as soon as the user drops some item somewhere on screen the data should be updated by server. For this reason, I've decided to use the some background XMLHTTP calls technique (to be more accurate I'm using OutPost which is an advanced AJAX technique).
According to this technique, as soon as the user drops the item somewhere on screen, some initial data is shown immediately, and then by some background XMLHTTP calls, I should continue updating this item.
Since I've heard that XMLHTTP is being processed by a single thread operation and can not use two XMLHTTP calls at the same time, what will happen in case the user try to make another operation while updating data and I need the XMLHTTP object for another mission?
Is there any other way to connect or work parallel against server without rendering or refreshing the page?
Alternatively, is there any way to tell XMLHTTP to stop process, so I can start a new one?
For example: in case know Google Earth, while pointing some place on screen, it goes there, and continue updating data for few seconds until work is done. In case you try to go somewhere else during updating – updating stops immediately, goes to the new place and start updating the new place.
I'll be appreciate for some answers
Thanks in advance
RUVI
|
|
|
|
|
You CAN have multiple XMLHTTP objects on a specific page - so essetially, you can have one for each control you want to update (this is actually how ATLAS works)....
Just make sure they all have different IDs and all should be groovy - may help to make em asynchronous too (specify a callback fn)
"Now I guess I'll sit back and watch people misinterpret what I just said......"
Christian Graus At The Soapbox
|
|
|
|
|
Thanks.
I know exactly what to do with you info.
RUVI
|
|
|
|
|
Hi,
We need to support multiple languages in our application using ASP.NET.
Any ideas on this would be of great help.
Thanks
|
|
|
|
|
you can work with resource files in .net for multilanguage
see here:
http://weblogs.asp.net/guys/archive/2004/08/21/218116.aspx
|
|
|
|
|
|
Thanks mate! these articles helped quite a bit!
|
|
|
|