|
I have hosted a site and they have given 5 email id to put my mail. how can i check that mail from my application. can i assess these mails from my application. plz. provide some tips.
Bharat Bhusanam
|
|
|
|
|
|
Dear Friends:
In numeric style of page number in GridView , how can I set the font-color or back-color of current page number?
Mazy
"One who dives deep gets the pearls,the burning desire for realization brings the goal nearer." - Babuji
|
|
|
|
|
Have you checked the PagerStyle and PagerSettings properties?
|
|
|
|
|
Yes, they apply on all of the fonts in footer , and do not specify current page number.
|
|
|
|
|
As a workaround, Try to use the following to access that label:
The Current Page is called CurrentPageLabel. Assign it a class in the aspx, or try this:
GridViewRow pagerRow = CustomersGridView.BottomPagerRow;
Label pageLabel = (Label)pagerRow.Cells[0].FindControl("CurrentPageLabel");
Once you have the label, you can assign it a css class.
|
|
|
|
|
Thanks , I'll check it. 
|
|
|
|
|
i am working on a web application i want to implement file uploading and downloading directly from the user. like user upload diectory or download directly from FTP server..
Please help me ..
Send me some Demo or articls
|
|
|
|
|
Downloading is as simple as placing a link directly to the file you wish to allow your users to download. So if you want to allow your users to download an MS word document use something like "href='http://www.yourWebSite.com/subFolderName/helpFile.doc'".
Uploading requires a little bit of code. Check out this tutorial:
http://www.codeproject.com/aspnet/fileupload.asp[^]
Good luck!
-Goalie35
|
|
|
|
|
how to upload multiple Directories/Folders on the Server
plzz send me some Demo Or Link
|
|
|
|
|
I don't entirely understand. Are you looking to upload multiple folders to the server or are you trying to upload a single file to multiple folders located on the server?
As far as I know, you can't upload folders directly to a server, only files (someone please correct me if I'm wrong). If you want to upload an entire directory, you should first zip it up and then upload this zipped file to the server.
hth
-Goalie35
|
|
|
|
|
|
Any particular reason why you aren't using the datagrid or gridview?
|
|
|
|
|
In fact i am using the gridview to show the data but the header of the gridview, I am building it in this method. The reason is that I don't think that is possible to build a header for the grid I need through the gridView:
Open this link and see the header I am talking about
http://yoni.minicircuits.com/DetailMixer.aspx?Flag=0&PS=sm&FreqRFLO_Low=540&FreqRFLO_High=580&CLossMax=7
Eric H.
|
|
|
|
|
I think you're making this much harder than it needs to be.
|
|
|
|
|
What do you mean? what harder?
Eric H.
|
|
|
|
|
Since the DataGrid/GridView have this functionality built in, you should use them as apposed to manually creating an html table.
|
|
|
|
|
Do I be able to build, through the gridView control, the headers as I did in:
http://yoni.minicircuits.com/DetailMixer.aspx?Flag=0&PS=sm&FreqRFLO_Low=540&FreqRFLO_High=580&CLossMax=7
If yes, help me.
Thanx
Eric H.
|
|
|
|
|
Sorry, can't view that website from work. But, you can pretty much do anything you want.
|
|
|
|
|
hi,all...
for the last 3 days i am trying to find out how can i retrieve the security settings of client's browser(Internet Explorer) which he sets with the help of "Internet Options"
then selecting the "Security" tab and "Custom Level " setting...
i want to retrieve these settings on server side...with the help ASP.NET
so if anybody knows the answer please help me out...
its really frustating..
i tried by using
1)Browser Helper Object
2)InternetExplorer Object
3)HTTPBrowserCapabilities
4)WebBrowser Object
another way could be "By Getting The Handle Of Security Window"
please tell me Is there any which will Serve my Purpose
|
|
|
|
|
I have a problem and I think that WebService may be a solution for me.
I am working in a company that is divided 2 companies: one in USA and one in Asia.
We have 2 different servers, one in USA and one in Asia and our website is running in both of the servers that are always updated as same.
We add in both of them the total visitors. The problem is that we want to get the total number of visitors of both Servers:
USA visitors+ASIA visitors in both servers. For example if USA Visitors=12000 and ASIA visitors=9000, I would like to see in both servers 21000.
May I use WebService, if yes how to do it? If no any idea.
Eric H.
|
|
|
|
|
What is the problem you're having with the webservice. It seems like it's very straight-forward.
|
|
|
|
|
I don't understand your reply, please review my post, it s clear,isn't it?
Eric H.
|
|
|
|
|
No, it's not. Like I said it seems very straight-forward. Basically, a non-issue. Where are you storing the value?
|
|
|
|
|
Sorry,
I am saving the value to a text file in each one of the servers.
Eric H.
|
|
|
|