|
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!
|
|
|
|
|
please anybody reply of this query that i am working on web portal,Basically i have to track which machine shutdowm or up for this user have to input IP address of server through which I easily track status of machine but application working fine on INTRANET but when i hosted on internet it will not work,For INTERNET user have to input IP address of the server whom it want to connect but it will not work.If my concept is wrong to connect the server through my application by IP address then please reply how to connect server of any remote netwok.
|
|
|
|
|
I'm not really sure what you are trying to get at, but if you are trying to ping a server over the internet i think you might run into problems. Somebody correct me here if i am wrong, but the internal network IP for a server is most likely not the same as the external facing IP address of the company - i.e. if a company has several servers, all with individual internal IPs, they will still probably only have one external IP address for the company as a whole.
|
|
|
|
|
i have included reference for using outlook express in asp.net. i have selected microsoft outlook 11.0 object library. while i try to run this proj after my code it gives the error. Please tell me why this problem.
Code:
using Outlook = Microsoft.Office.Interop.Outlook;
Outlook.Application app = new Outlook.ApplicationClass();
Outlook.NameSpace NS = app.GetNamespace("MAPI");
Outlook.MAPIFolder inboxFld = NS.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderInbox);
foreach (Outlook.MailItem t in inboxFld.Items)
{
//Console.WriteLine(t.Subject);
Response.Write(t.Subject);
}
Error:
The type or namespace name 'Outlook' does not exist in the namespace 'Microsoft.Office.Interop' (are you missing an assembly reference?).
Prya
|
|
|
|
|
Outlook Express does not use the Microsoft Outlook object model. It doesn't have any COM object model.
Michael
CP Blog [^] Development Blog [^]
|
|
|
|
|
Not outlook Express. Its Microsoft Outlook. Only for Microsoft outlook i have added reference microsoft outlook object 11.0.
Prya
|
|
|
|
|
the project is split into 2 parts
the web application and windows application
through windows application i have to download a csv file from a site to myPC
automatically and then upload the same to the website automatically.It would be a great help if i could get the code in VB.NET for both upload and download as well.
AMIT(TATA CMC)
-- modified at 0:59 Monday 10th July, 2006
|
|
|
|
|
So you want the code for all of this? Hang on a wee minute while i go off and do it for you...
There are upload/download articles on this site if you have a search, they should give you an idea of where to start
|
|
|
|