Friday, 8 November 2013
Get RSS Feed to your Website
Hi,
Today I have Implemented this simple method to get the RSS feed from any other website. Usually this is used to get the Daily/Breaking/Latest News to your website.
So, Now i am going to explain how we can achieve this via simple coding.
<marquee...
Tuesday, 2 April 2013
Tinymce Editor in Asp.net
First Download the Source Code from the TinyMce site and then
Just Add the following code in the page where you want to show your TinyMce Editor
<script src="tinymce/jscripts/tiny_mce/tiny_mce.js" type="text/javascript"></script>
<script...
Url ReWriting Using Url Rewriter.Net
Open your web project in Microsoft Visual Studio .NET.
Add a reference to the Intelligencia.UrlRewriter assembly.
Open the web.config file in your web project.
Add the following in the web.config file:
<configuration>
<configSections>
<section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" /> </configSections> <system.web> <httpModules> <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter" /> </httpModules> </system.web> <system.webServer> <modules runAllManagedModulesForAllRequests="true"> <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule" /> </modules> <validation validateIntegratedModeConfiguration="false" /> </system.webServer> <rewriter> <rewrite url="~/products/(.+)" to="~/products.aspx?category=$1" /> </rewriter> </configuration>
And...
Thursday, 21 March 2013
Getting Value from Editor
private string StripHTML(string source)
{
string result = "";
try
{
// Remove HTML Development formatting
...
Friday, 15 March 2013
How to make the HTML table in C# (on the server side, values comes from the database)
while (sqr.Read())
{
string partner_name = sqr.GetString(0);
int partner_id = sqr.GetInt32(1);
...
How to format the string in the title property of the image tag(values comes from the database)
using (SqlConnection conn = DataAccess.GetConnected())
{
SqlCommand cmd = new SqlCommand("GetImageForSlider", conn);
...
Monday, 11 March 2013
Insert, Edit, Delete, Update in GridView Using Asp.Net with C-Sharp And How to display images from database using image Path in GridView
aspx Code
<asp:GridView ID="Fare_Images_GridView" runat="server" AutoGenerateColumns="False" CellPadding="4" ForeColor="#333333" GridLines="None"
AllowPaging="false"...