Add asp.net pages into sharepoint
How to add or open the asp.net pages from inside sharepoint? I found many info on the web about that, but they all fail or they are not clear. I appreciate your help :) ...
How to add or open the asp.net pages from inside sharepoint? I found many info on the web about that, but they all fail or they are not clear. I appreciate your help :) ...
Are there any good alternatives for Lucene .NET to use in a ASP.NET website? I want to index XML-, TXT-, PDF- and DOC-files. Thanks! ...
Does anyone have a bulletproof method (in C# ideally!) of determining if ASP.Net is properly registered on your computer ? I am writing an installation program for an ASP.Net application and I need to know whether I should run aspnet_regiis. At the moment we always run aspnet_regiis -i to ensure that ASP.Net is regsitered properly bu...
I've created a class library that contains three entity models for three databases that other classes have to connect to. This class library is then used by three different web services and a website. These are all installed on their own server so there's no easy way to let them share the same connection data. In my web.config files I h...
I have this code private void writeReport(IReport report, string reportName) { string reportString = report.makeReport(); ASCIIEncoding encoding = new ASCIIEncoding(); byte[] encodedReport = encoding.GetBytes(reportString); Response.ContentType = "text/plain"; Response.AddHeader("Conte...
Hello, I want to create a web service in ASP.NET that fetches data from a website every hour or so (the storing part I got it covered). In this example, metacritic.com, how can I get the Users score of a movie at any given time interval? What I know is, I would have to get the source of the website and then find the html element that ...
Hi I am new to Asp.Net..I am using vs 2005...Can anybody send me example code to design static and dynamic pages(like for example website design) ...
We are just upgrading our ASP.Net shop implementation (from simple one) to structure that should be more flexible. I am just looking for some options how to store images related to product. (there will be two types of images, thumb of the product and then full view images of the product). It should handle at least hundred products. So f...
For my web app security I'm using FormsAuthentication / MembershipProvider with a non persistant cookie. My application interacts with some web services, these also use the Membership providers. User passwords are hashed in the database. The problem is the person logged into application the web service needs to authenticate with the w...
My ASP.NET application utilises a "Modules" system by using Type.GetType() on a fully-qualified string reference, and instantiating an object of that type, as you do. However, recently it has been throwing exceptions at not being able to find the types - but only occasionally. I haven't been able to replicate at will, but it usually ha...
I have a sqldatasource connection in whose parameters, the insert parameter is set as INSERT INTO [user_info] ([firstname], [lastname], [age]) VALUES (@firstname, @lastname, @age) Now i understand @firstname, @lastname, @age are the parameters to which i set them the value. I'm databinding it with a formview, which automatically bind...
Cannot get the user list from ACtiveDirectory Services when accessed from another system in the same network. If accessed from where the code is, then we can obtain the userlist, but cannot get it when accessed from other system in the same network. Any help is utmost appreciated... Thanks, Venkat. ...
Hi, I have a table from which i am getting my data to the GridView control. I need to Insert Or Update this row to another table, according to some condition. If one condition is true, i need to change the text of the LinkButton in EditItemTemplate to insert, else to update itself. How can i change the text of LinkButton in RowCommand? ...
I am using a Web Application Project to develop some web user controls (c#). In the WAP the user control directive contains the codefile and inherits attributes. When I publish the WAP to the target website. The dll from bin is copied correctly to the bin of the website, the user controls (.ascx files) are copied correctly. When I per...
I use an ajax ModalPopupExtender on many pages to display confirmation dialog. So i would like to reuse same code on all pages by placing it in a use control. But I'm not sure it it possible to access this user control from a javascript (I don't want server side operations). This is the code that is responsible for popup display, that ...
I would like to add some paragraphs or new lines or words dynamically but I want to make gaps between every part and the other. How is it possible to do that in the c# code page? ...
Each time my webpage is loaded it runs a routine in the page_load event of the page behind which increments a viewcount by 1. The problem I have is that the routine runs even if use refresh to reload the page. How do I stop this routine from running if the page has been viewed by a particular user in their current session? I thought I...
Hello all I am currently investigating MVC for a new project we are starting. So far I like it, but I'm wondering about something. The actual views that we will be displaying will not be known at design time, we will be specifying in a config file somewhere how to build these views. Is this pattern supported by MVC or do we need to kno...
How to make controls float freely on asp.net webpages? It was some setting to be changed in visual studio right? ...
Hi I want to put image along with some data in asp.net drop down list box. Can somebody give me a sample code to achieve this functionality? country flag + country name --> in the same list item Thank you, Nagu ...