|
You can build a web-part control that supports drag/drop user-personalization and customization and use it within any vanilla ASP.NET 2.0 application, or host it within a SharePoint 2007 or Windows SharePoint Services (WSS) site
Sathesh.
Blessed is the season which engages the whole world in a conspiracy of love.
|
|
|
|
|
Looking back at your posts, you are either a total moron, posting from some sort of workshop for retarded people ( in which case, I'm sorry, but perhaps you should find a place more supportive of your special needs ), or a troll. No matter which it is, you're in the wrong place, this is a place for professional developers, people who can use google, who can read, and who are able to understand some basics of programming.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
Hi all,
First of all I wud like to thank u all for helping me out again n again.Life wud have been miserable without the expert-advices of codeproject.
My Situation:
On a remote PC,we r running windows server 2003,IIS6.0,sharepoint services and it has .NET Framework 1.1.I wish to run my ASP.NET website created in Framework 2.0 on that IIS.For this I need to install Framework 2.0 on the server.The Server is also running a Sharepoint site.
My Question:
If I install Framework 2.0 on the above mentioned windows server 2003,will it affect my existing sharepoint site?Will there be any negative impact on the system?I wish to clarify my doubts in order to go for the installation on the server bcoz my supervisor is very much reluctant to this idea and he thinks it will surely affect the existing sharepoint site in a negative way.
Kindly enlighten me in this regard!!
|
|
|
|
|
vasillis_zayetsav wrote: I wish to run my ASP.NET website created in Framework 2.0 on that IIS.For this I need to install Framework 2.0 on the server.The Server is also running a Sharepoint site.
my system is also running in same condition. It has all the .Net Framework Install. and WSS 3.0 .
vasillis_zayetsav wrote: If I install Framework 2.0 on the above mentioned windows server 2003,will it affect my existing sharepoint site?
I don't think so. Share Point having it own sites. and By default its running on Port 80. and When you host your .net sites create Virtual Directory on your "Default Web Site" not under Share point site. Share point site will run independently on your earlier setup. After creating VD of new sites, Change the ASp.Net version to Version 2.0. So its all cool.
cheers,
Abhijit
CodeProject MVP
|
|
|
|
|
Hi Experts
I'm just starting to look at the dataset's i(xsd files) in ASP.Net 2.0 and have a general enquiry about best practice.
It is best to have xsd file for database table . What are most people doing and the advantages / dis advantages for this aproach.
My database of choice is SQL Server 2000 using Stored Procs.
Andy
beula.
CMOTS INFOTECH
|
|
|
|
|
Read This[^] Article
cheers,
Abhijit
CodeProject MVP
|
|
|
|
|
antony beula wrote: I'm just starting to look at the dataset's i(xsd files) in ASP.Net 2.0 and have a general enquiry about best practice.
I am not a big fan of DataSet . Just create custom strongly typed classes and use it. You will feel much better than a DataSet .
|
|
|
|
|
Hi,
I am using a gridview(paging enabled with some 80,000 records, page size 1000 records) with selectallpages & deselectallpages.
Selectallpages and deselect is working fine with me, after selecting all the pages record using a checkbox, I need to find the values in the rows having checkbox checked.
But I m able to find only records on the selected page, not able to retrieve values from other pages. Selectallpages is working, I can see that by going through pages.
I tried looping through gridview rows but its gives values only of current page.
Any suggestion how to retrieve all the values(80k records).
Regards
Vijay V.
Yash Softech
|
|
|
|
|
VijayVishwakarma wrote: I am using a gridview(paging enabled with some 80,000 records, page size 1000 records)
Is it really necessary to display this amount (80,000) records in GridView. Did you ever thing about the web site performance ? Please have a look into it and Try to minimize the records as small as possible. This is just my suggestion.
VijayVishwakarma wrote: But I m able to find only records on the selected page, not able to retrieve values from other pages. Selectallpages is working, I can see that by going through pages.
Here is a excellent article by Samir, Maintaining States of Selected CheckBoxes in Different Pages inside the GridView[^]
This will resolve your problem. But please consider the Data amount the that you are showing on page.
Good luck!
cheers,
Abhijit
CodeProject MVP
|
|
|
|
|
Thanks for the link.
I do care for that, but it is the requirement.
Its the admin of the site where site admin wants to see all the values.
I am worried about the performance since I m expecting more than 100,000 users on the site at a time, need to write a perfect caching code and work out with performances.
This count will go above 100,000 in 3-4 days.
Regards
Vijay V.
Yash Softech
|
|
|
|
|
VijayVishwakarma wrote: Its the admin of the site where site admin wants to see all the values.
That's correct. But why you are not giving some search criteria, based on that display the data.
VijayVishwakarma wrote:
I am worried about the performance since I m expecting more than 100,000 users on the site at a time, need to write a perfect caching code and work out with performances.
Yup. You should taking care of lots of Caching.And here is the one of the best link for performance, Improving ASP.NET Performance[^] . Please go through this.
Good luck
cheers,
Abhijit
CodeProject MVP
|
|
|
|
|
Thanks
Vijay V.
Yash Softech
|
|
|
|
|
VijayVishwakarma wrote: I am using a gridview(paging enabled with some 80,000 records, page size 1000 records) with selectallpages & deselectallpages.
Reading all other posts, I understand you care about performance. So don't use the built-in gridview paging. It just loads all the data at the beginning and reloads it when page index changes which will be huge performance issue. As a remedy, use custom paging.
VijayVishwakarma wrote: I tried looping through gridview rows but its gives values only of current page.
Loop through the data source. Data source will have all the values.
|
|
|
|
|
i want to upload more then one file with single file upload control?
how can i achieve this?
|
|
|
|
|
keyur satyadev wrote: i want to upload more then one file with single file upload control?
You can't.
Here[^] is a good article on multiple file upload using Flash. You can look into it.
cheers,
Abhijit
CodeProject MVP
|
|
|
|
|
thanks for reply.
but i do it. it is possible.
|
|
|
|
|
keyur satyadev wrote: but i do it. it is possible.
Oh great! please let me know how.
Thanks in advance!
cheers,
Abhijit
CodeProject MVP
|
|
|
|
|
review the link here
www.codeproject.com/aspnet/multiuploads.aspx
|
|
|
|
|
keyur satyadev wrote: review the link here
www.codeproject.com/aspnet/multiuploads.aspx
yup. for that every time you have to select file and to list. But i thought that you want at a time to upload. Any way, its good that you got your problem solved.
cheers,
Abhijit
CodeProject MVP
|
|
|
|
|
using asp.net..c#..sqlconnection.
|
|
|
|
|
Please help any VB 2008 / asp.net 3.5 guru
I used dropdown list box SQL Server , list view, Pager … its working fine see the link below
http://www.tharjuma.com/anquran.aspx
The problem I’m facing is See the program …. For Example
If the I am selecting the Sura No 6. And press SHOW button , It will jump to the page No : 177 as the Database and program as I did
The same way if I choose Sura No 18. And press SHOW button , It will jump to the page No : 408 as the Database and program as I did .
But if I pressed Next/Last button in the pager its working ….but after that if select and Drop down list as mentioned on the same way it will not show right page. It requires the “First“ PAGE button of PAGER button to be pressed once then only it will be shown properly
How to rectify this? I think we need to reset the Pager every time when we click the Dropdown list? Could anyone guide me?
|
|
|
|
|
hi...i am beginner to asp.net with c#
i uploaded the file to physica path..but i want to upload the file to server..please help me how can i give the server path....
the following code for the physical path..it is working fine...
File1.PostedFile.SaveAs(Server.MapPath(".\\" + StrFileName));
thank you....
|
|
|
|
|
qn123 wrote: i uploaded the file to physica path..but i want to upload the file to server..please help me how can i give the server path....
Here is one way...
create a Serverimage folder in your web application
Public string GetServerImagePath()<br />
{<br />
return System.Web.HttpContext.Current.Request.PhysicalApplicationPath + "Serverimage\\";<br />
}
qn123 wrote: the following code for the physical path..it is working fine...
File1.PostedFile.SaveAs(Server.MapPath(".\\" + StrFileName));
and while upload
fUpload.PostedFile.SaveAs(GetServerImagePath()+ "StrFileName");
Note : You have to give write permission to every one on that image folder
cheers,
Abhijit
CodeProject MVP
|
|
|
|
|
hi..
i m creating the binary tree where i have a html 2 row and 3 column in table.1 st row middle column contain image.it is root to create left or right node i need to create same html table in 2nd row corner column.every tyme i need to call the html table with in another table.how can i able to do that using asp.net coding.
plz help
|
|
|
|
|
hello.
when I am running GalleryServerPro, I see an error in the administrator page.error is following:
Insufficient permission
You are are not authorized to view any albums. Contact your administrator to request access.
this error no permit I do a effective.
|
|
|
|