What Is The Best Extension For RSS
Dec 26, 2010
Who does know what is the best file extension for RSS feed on the site (for SEO):
(XML) mysite.com/rss.xml
(RSS) mysite.com/rss.rss
(HTML) mysite.com/rss.html
(ASPX, PHP, etc) mysite.com/rss.aspx
(with url params) mysite.com/rss.aspx?param1=val1¶m2=val2
some other
I'm going to use (3) html on my site, is it ok?
View 2 Replies
Similar Messages:
Jan 20, 2010
I've looked at a few files this AM, all have .xap, and all are throwing errors as I try to debug each of these projects. Here is an excellent example:
http://www.codeproject.com/KB/silverlight/TallColumns.aspx
I'd like to learn how this project works, but each time I try to debug, it throws an error saying 'Error creating control xaml1, unknown server tag asp.SilverLight'. what does this mean? What do I need to do to make this work?
I'm using VWD 2008 Express.
View 7 Replies
Jan 31, 2010
What are pros to use extension-less url? in any terms. like [URL] to [URL] and is it possible to have extension-less url for every page? Update: Is extension less url better for site security?
View 6 Replies
Nov 7, 2010
I noticed a lot of ASP .Net sites does not have the URL ending with ".aspx".
An example would be: [URL]
Did they create a Questions folder and put a Default.aspx inside?
In that case, wouldn't there be A LOT of default.aspx in many folders which is hard to maintain (even though it is user-friendly)?
View 5 Replies
Feb 12, 2010
i saw the extension method code but i could not understand what it is and what is the utilities of extension method.
View 3 Replies
Oct 14, 2010
how can i make urls without extention it means without .aspx or .html??
View 3 Replies
Mar 11, 2010
I want user can save a file after click on a link.
I write the following code:
[Code]....
[Code]....
but save dialog box shows file without extension of file..
and file save on system without any extension...
View 4 Replies
Mar 12, 2011
I am using Tuple class in WCF Service. When i add reference to my web project I get Tuple class. Now i want to add an extension method to Tuple<> class in my service which will be accessible in my Web project.
View 1 Replies
Feb 22, 2010
I want to ask, does adding extension methods to datatypes works in the same way as Microsoft's methods or do they have any limitaion.
This is relevant to experienced programmers who had find some limitations while using them.
View 3 Replies
Jul 6, 2010
how to use class extensions with Views?
I'm using VB.Net, Visual Studio 2010 Ultimate and developing an ASP.MVC 2 application.
I have an module that defines some extensions to the String class. In a WinForm application, I would simply use a Imports statement to include my String extension module into my class. But, in Views, the compiler complains when I try doing that.
View 10 Replies
Feb 24, 2011
I want to hide or modify the url extension by default it is set to aspx. Can it be modified in asp.net
View 2 Replies
Jun 8, 2010
How can i hide page extension (for ex .aspx , .php) from url of the page
View 3 Replies
Dec 21, 2010
we are developing asp.net web application with form authentication in IIS 6 - Windows server 2003.
the application is working fine.
but .html extension does not working.
How can i add or enable .html extension in my website(IIS 6.0)?
View 11 Replies
Dec 6, 2010
I'm searching for some extension methods that helps programming in ASP.NET. Some functions to work on controls, validators, AJAX or programing in C# in general.It could be methods library or your own methods.Do you know any source of those methods (other than CodePlex - that is good source of generic extensions) especially for ASP.NET?
View 1 Replies
Mar 26, 2010
any link or thread or ASP.NET sample code to make an online book reader/Preview control (same as GoogleBook)
Is there is any 3rd party control available that can display the book with any file extension?
View 11 Replies
Feb 22, 2011
Possible Duplicate: How do I Validate the File Type of a File Upload?
i would like to add file extension for filtering to file upload control in my asp.net page.and do validation on client side.how can i set file extension dynamically..ex:images only(.jpg;.png;*.gif;).
View 1 Replies
Sep 23, 2010
Is there a way to specify a file extension for ASP.NET upload control? E.g. I want to upload images with jpg and png extensions only.I can implement this easily for a windows application, but struggling with ASP.Net
View 3 Replies
Mar 7, 2010
I am trying to add page with custom extension, say .asp2 with my set of html tags.Now whenever i try to access the page on browser...it asks me "Save as". This happens because I am using an extn which the server is not able to recognise.What should I do to so that my server, IIS 5.1 recognises this extension??
how to associate custom events on such custom page?
View 2 Replies
Oct 24, 2010
i have mapped *.xyz extension to my own custom handler in asp.net and can run it on Windows asp.net.
How can I do the same thing on mono (Linux/Apache - ubuntu)?
I have this in my web.config:
<httpHandlers><add path="*.xyz" verb="*" type="MyCustomHandler,...">...
I also added similar things to mod_mono.conf and several other files but still I get http 404 The resource cannot be found.
View 1 Replies
May 18, 2010
I have a scenario where my application is going to be publishing services that are consumed by both PC's and mobile devices, and I have a HTTPModule that I want to only perform work on only the mobile requests. So I thought the best way of doing this was to point the mobile requests to a different file extension and have the HTTPModule decide to process only if the request targets this new extension.
I don't need a custom HTTPHandler for the new extension; I want to program the services like a normal .ASMX service, just with a different extension.
First, can I do this? If so, how do I do it so that requests to my new extension are handled just like .ASMX requests?
Second, is this the right approach? Am I going about separating and managing the mobile vs. PC requests the wrong way?
View 1 Replies
Feb 21, 2011
What is the best way to go about creating a custom framework for asp.net?
We have several enterprise level asp.net ecommerce websites all running from completely seperate code bases. What I'd like to do is standardise the common components (session management/urlrewriting/surge control etc) and integrate them into the .net framework at the highest level possible and in a way that my developers cannot (easily) make changes.
I've considered creating a common assembly and just referencing that in each of the solutions but this still relies on the developer wiring up the httphandlers/modules and implementing the basepage design pattern for each individual page/masterpage.
View 1 Replies
Nov 16, 2010
i generated a zip file of xml file,,ie aa.xml.zip....but after downloading that file,i extracted the zip file,then i cant getting in the correct format of xml file with extension .xml...how will possible this.
View 6 Replies
Mar 14, 2010
At the moment i get file extension of the file like :
string fileExt = System.IO.Path.GetExtension(filUpload.FileName);
But if the user change the file extension of the file ( for example user could rename "test.txt" to "test.jpg" ), I can't get the real extension . What's the solution ?
View 3 Replies
Oct 26, 2010
How can i get all files without file extension into an array. I will supply the folder path.
Is this possible using Directory.GetFiles() or DirectoryInfo.GetFiles()?? Is there any alternative way?
I am using ASP.NET C#.
View 2 Replies
Dec 6, 2010
How can I add a extension mappings in IIS6 which is actually a folder?I add an extension mappings of htm, jpg and gif for a 404 response, to be redirected to my custom page. however i have problem regarding in folder for example http://myweb/thumbnails/
View 1 Replies