|
Which special characters?
|
|
|
|
|
|
Hi
I'm developing an application wherein I'm calling some classes in webforms which do some searching,addition etc on the database. Now what I need to know is how can I code the classes in such a way that if I need to call these classes through web service I won't have to redo the code.
Thanks
Don't Quit
|
|
|
|
|
Encapsulate the functionality in a class, then use that class in any project. You can add the class to the GAC or simply use xcopy.
|
|
|
|
|
Hi, Firstly thanks for replying. I'm already aware of these things what I'm asking is can a single class serve both webservice & web form. As in a web service syntax is little different like [WebMethod] attribute etc.
Regards
Don't Quit
|
|
|
|
|
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
|
|
|
|