<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>ASP.NET Forum RSS Feed (Replies Included)</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the 'ASP.NET' forum at Programmer's Heaven, including replies.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Thu, 20 Jun 2013 03:24:00 -0700</pubDate>
    <lastBuildDate>Thu, 20 Jun 2013 03:24:00 -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>Re: SqlException unhandled : Incorrect syntax near '12'</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432405/432414/re-sqlexception-unhandled--incorrect-syntax-near-12/#432414</link>
      <description>please check record variable name in database and queries, your logic is good try to review variable.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432405/432414/re-sqlexception-unhandled--incorrect-syntax-near-12/#432414</guid>
      <pubDate>Thu, 20 Jun 2013 03:14:03 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Re: SqlException unhandled : Incorrect syntax near '12'</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432405/432413/re-sqlexception-unhandled--incorrect-syntax-near-12/#432413</link>
      <description>please check record variable name in database and queries, your logic is good try to review variable.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432405/432413/re-sqlexception-unhandled--incorrect-syntax-near-12/#432413</guid>
      <pubDate>Thu, 20 Jun 2013 03:12:12 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Re: SqlException unhandled : Incorrect syntax near '12'</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432405/432412/re-sqlexception-unhandled--incorrect-syntax-near-12/#432412</link>
      <description>please check record variable name in database and queries, your logic is good try to review variable.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432405/432412/re-sqlexception-unhandled--incorrect-syntax-near-12/#432412</guid>
      <pubDate>Thu, 20 Jun 2013 03:10:22 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>SqlException unhandled : Incorrect syntax near '12'</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432405/432405/sqlexception-unhandled--incorrect-syntax-near-12/</link>
      <description>Dear users, &lt;br /&gt;
&lt;br /&gt;
I am having problem with inserting date into SQL server. My code is as following: &lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;        protected void btnSave_Click(object sender, EventArgs e)

        {
            using (SqlConnection con = new SqlConnection("Data Source=MEHDI-PC\\SQLEX;Initial Catalog=PIMS;Integrated Security=True"))
            {
                using (SqlCommand cmd = new SqlCommand())
                {

                    string DatePrinted = "";

                    if (txtDatePrinted.Text != "")
                        DatePrinted = DateTime.ParseExact(txtDateReceived.Text, "G", CultureInfo.GetCultureInfo("en-US")).ToString("yyyy-MM-dd");
                    else
                        DatePrinted = "NULL";

                    string DateReceived = "";

                    if (txtDateReceived.Text != "")
                        DateReceived = DateTime.ParseExact(txtDateReceived.Text, "G", CultureInfo.GetCultureInfo("en-US")).ToString("yyyy-MM-dd");
                    else
                        DateReceived = "NULL";

                    string DueDate = "";

                    if (txtDueDate.Text != "")
                        DueDate = DateTime.ParseExact(txtDateReceived.Text, "G", CultureInfo.GetCultureInfo("en-US")).ToString("yyyy-MM-dd");
                    else
                        DueDate = "NULL";

                    string ActualDate = "";

                    if (txtActualDate.Text != "")
                        ActualDate = DateTime.ParseExact(txtDateReceived.Text, "G", CultureInfo.GetCultureInfo("en-US")).ToString("yyyy-MM-dd");
                    else
                        ActualDate = "NULL";

                    String sql = "Insert into dbo.Documents(Ref,Subject,Src,Dst,Medium,Date_Prin
ted,Date_Received,Document_Type,Action_Required,Du
e_Date,Actual_Date,[Content],Tag,Issue_No,Attachme
nt,Notes,Assigned_To,Reply_Ref,Priority,Status,Res
ponse) values ('" + txtRef.Text + "','" + txtSubject.Text + "','" + ddlSource.Text + "' ,'" + ddlDestination.Text + "','" + ddlMedium.Text + "','" + DatePrinted + "','" + DateReceived + "','" + ddlDocumentType.Text + "','" + cbxAction.Checked + "','" + DueDate + "','" + ActualDate + "','" + txtContent.Text + "','" + txtTag.Text + "','" + txtIssue.Text + "','" + txtAttachment.Text + "','" + txtNotes.Text + "','" + ddlAssignedTo.Text + "','" + txtReplyRef.Text + "','" + ddlPriority.Text + "','" + ddlStatus.Text + "','" + ddlResponse.Text + "')";
  
                    cmd.Connection = con;
                    cmd.CommandText = sql;

                    con.Open();
                    //dataset object to get all select statement results
                    //DataSet ds = new DataSet();

                    //sql dataadoptor to fill dataset
                    cmd.ExecuteNonQuery();
                }
                if (con.State == ConnectionState.Open)
                {
                    con.Close();
                }

                MultiView1.SetActiveView(vRecord);
                txtRef.Text = string.Empty;
                txtSubject.Text = string.Empty;
                ddlSource.Text = string.Empty;
                ddlDestination.Text = string.Empty;
                ddlMedium.Text = string.Empty;
                txtDatePrinted.Text = string.Empty;
                txtDateReceived.Text = string.Empty;
                ddlDocumentType.Text = string.Empty;
                cbxAction.Checked = false;
                txtDueDate.Text = string.Empty;
                txtActualDate.Text = string.Empty;
                txtContent.Text = string.Empty;
                txtTag.Text = string.Empty;
                txtIssue.Text = string.Empty;
                txtAttachment.Text = string.Empty;
                txtNotes.Text = string.Empty;
                ddlAssignedTo.Text = string.Empty;
                txtReplyRef.Text = string.Empty;
                ddlPriority.Text = string.Empty;
                ddlStatus.Text = string.Empty;
                ddlResponse.Text = string.Empty;
            }

            }&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After I run this code, and enter any date value in the datefield, it throws this message: &lt;br /&gt;
&lt;br /&gt;
SqlException unhandled : Incorrect syntax near '12' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I am failed to see anything wrong with my code. Please help me identify the problem.&lt;br /&gt;
&lt;br /&gt;
You help will be much appreciated.&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432405/432405/sqlexception-unhandled--incorrect-syntax-near-12/</guid>
      <pubDate>Wed, 19 Jun 2013 23:56:07 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>SqlException unhandled : Incorrect syntax near '12'</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432403/432403/sqlexception-unhandled--incorrect-syntax-near-12/</link>
      <description>Dear users, &lt;br /&gt;
&lt;br /&gt;
I am having problem with inserting date into SQL server. My code is as following: &lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;        protected void btnSave_Click(object sender, EventArgs e)

        {
            using (SqlConnection con = new SqlConnection("Data Source=MEHDI-PC\\SQLEX;Initial Catalog=PIMS;Integrated Security=True"))
            {
                using (SqlCommand cmd = new SqlCommand())
                {

                    string DatePrinted = "";

                    if (txtDatePrinted.Text != "")
                        DatePrinted = DateTime.ParseExact(txtDateReceived.Text, "G", CultureInfo.GetCultureInfo("en-US")).ToString("yyyy-MM-dd");
                    else
                        DatePrinted = "NULL";

                    string DateReceived = "";

                    if (txtDateReceived.Text != "")
                        DateReceived = DateTime.ParseExact(txtDateReceived.Text, "G", CultureInfo.GetCultureInfo("en-US")).ToString("yyyy-MM-dd");
                    else
                        DateReceived = "NULL";

                    string DueDate = "";

                    if (txtDueDate.Text != "")
                        DueDate = DateTime.ParseExact(txtDateReceived.Text, "G", CultureInfo.GetCultureInfo("en-US")).ToString("yyyy-MM-dd");
                    else
                        DueDate = "NULL";

                    string ActualDate = "";

                    if (txtActualDate.Text != "")
                        ActualDate = DateTime.ParseExact(txtDateReceived.Text, "G", CultureInfo.GetCultureInfo("en-US")).ToString("yyyy-MM-dd");
                    else
                        ActualDate = "NULL";

                    String sql = "Insert into dbo.Documents(Ref,Subject,Src,Dst,Medium,Date_Prin
ted,Date_Received,Document_Type,Action_Required,Du
e_Date,Actual_Date,[Content],Tag,Issue_No,Attachme
nt,Notes,Assigned_To,Reply_Ref,Priority,Status,Res
ponse) values ('" + txtRef.Text + "','" + txtSubject.Text + "','" + ddlSource.Text + "' ,'" + ddlDestination.Text + "','" + ddlMedium.Text + "','" + DatePrinted + "','" + DateReceived + "','" + ddlDocumentType.Text + "','" + cbxAction.Checked + "','" + DueDate + "','" + ActualDate + "','" + txtContent.Text + "','" + txtTag.Text + "','" + txtIssue.Text + "','" + txtAttachment.Text + "','" + txtNotes.Text + "','" + ddlAssignedTo.Text + "','" + txtReplyRef.Text + "','" + ddlPriority.Text + "','" + ddlStatus.Text + "','" + ddlResponse.Text + "')";
  
                    cmd.Connection = con;
                    cmd.CommandText = sql;

                    con.Open();
                    //dataset object to get all select statement results
                    //DataSet ds = new DataSet();

                    //sql dataadoptor to fill dataset
                    cmd.ExecuteNonQuery();
                }
                if (con.State == ConnectionState.Open)
                {
                    con.Close();
                }

                MultiView1.SetActiveView(vRecord);
                txtRef.Text = string.Empty;
                txtSubject.Text = string.Empty;
                ddlSource.Text = string.Empty;
                ddlDestination.Text = string.Empty;
                ddlMedium.Text = string.Empty;
                txtDatePrinted.Text = string.Empty;
                txtDateReceived.Text = string.Empty;
                ddlDocumentType.Text = string.Empty;
                cbxAction.Checked = false;
                txtDueDate.Text = string.Empty;
                txtActualDate.Text = string.Empty;
                txtContent.Text = string.Empty;
                txtTag.Text = string.Empty;
                txtIssue.Text = string.Empty;
                txtAttachment.Text = string.Empty;
                txtNotes.Text = string.Empty;
                ddlAssignedTo.Text = string.Empty;
                txtReplyRef.Text = string.Empty;
                ddlPriority.Text = string.Empty;
                ddlStatus.Text = string.Empty;
                ddlResponse.Text = string.Empty;
            }

            }&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You help will be much appreciated.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432403/432403/sqlexception-unhandled--incorrect-syntax-near-12/</guid>
      <pubDate>Wed, 19 Jun 2013 23:53:05 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Re: How to receive JSON array?</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432386/432393/re-how-to-receive-json-array/#432393</link>
      <description>&lt;br /&gt;
The Latest Discounts on Skin &amp;amp; Champion: 6.18 - 6.21&lt;br /&gt;
&lt;br /&gt;
From June 18th to 21th, the latest discounts on skin and champion for limited time in League of Legends will be released. During this period, you'll be able to buy Baron Von Veigar for 487 RP, Woad Ashe for 260 RP, Bandito Fiddlesticks for 260 RP, Rengar for 487 RP, Orianna for 440 RP, and Olaf for 395 RP.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://lol.gameguyz.com/news/news/the-latest-discounts-on-skin-champion-6-18-6-21.html"&gt;http://lol.gameguyz.com/news/news/the-latest-discounts-on-skin-champion-6-18-6-21.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
[url=http://lol.gameguyz.com/]League of Legends[/url]&lt;br /&gt;
[url=http://lol.gameguyz.com/news.html]LOL S3 champions[/url]&lt;br /&gt;
[url=http://lol.gameguyz.com/videos.html]lol s3 masteries[/url]&lt;br /&gt;
[url=http://lol.gameguyz.com/pictures.html]league of legends artwork[/url]&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432386/432393/re-how-to-receive-json-array/#432393</guid>
      <pubDate>Wed, 19 Jun 2013 01:06:10 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>How to receive JSON array?</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432387/432387/how-to-receive-json-array/</link>
      <description>Help me, please with receiving some JSON array&lt;br /&gt;
&lt;br /&gt;
If i sent request(by Fiddler) with Request Body like this:&lt;br /&gt;
&lt;br /&gt;
[{"name":"Homerius", "tonumber":"155555", "fromnumber":"166666", "text":"&amp;amp;&amp;amp;??!"}, {"name":"Stone", "tonumber":"9654999", "fromnumber":"999666", "text":"h9miii99!"}]&lt;br /&gt;
&lt;br /&gt;
how can I receive it in controller?&lt;br /&gt;
&lt;br /&gt;
I try to do something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;public HttpResponseMessage Post(JObject[] smspackage)
{
    List&amp;lt;MySMS&amp;gt; smses = smspackage.ToList&amp;lt;MySMS&amp;gt;();
    try
    {
        SMS_Repository.Add(smses);
        return Request.CreateResponse&amp;lt;MySMS&amp;gt;(HttpStatusCode.Creat
ed, smses);
    }
    catch (Exception)
    {

        return Request.CreateErrorResponse(HttpStatusCode.Expecta
tionFailed, "error");
    }
}&lt;/pre&gt;&lt;br /&gt;
but it dont works...&lt;br /&gt;
&lt;br /&gt;
sorry for my bad english&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432387/432387/how-to-receive-json-array/</guid>
      <pubDate>Tue, 18 Jun 2013 05:49:21 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>How to receive JSON array?</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432386/432386/how-to-receive-json-array/</link>
      <description>Help me, please with receiving some JSON array&lt;br /&gt;
&lt;br /&gt;
If i sent request(by Fiddler) with Request Body like this:&lt;br /&gt;
&lt;br /&gt;
[{"name":"Homerius", "tonumber":"155555", "fromnumber":"166666", "text":"&amp;amp;&amp;amp;??!"}, {"name":"Stone", "tonumber":"9654999", "fromnumber":"999666", "text":"h9miii99!"}]&lt;br /&gt;
&lt;br /&gt;
how can I receive it in controller?&lt;br /&gt;
&lt;br /&gt;
I try to do something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;public HttpResponseMessage Post(JObject[] smspackage)
{
    List&amp;lt;MySMS&amp;gt; smses = smspackage.ToList&amp;lt;MySMS&amp;gt;();
    try
    {
        SMS_Repository.Add(smses);
        return Request.CreateResponse&amp;lt;MySMS&amp;gt;(HttpStatusCode.Creat
ed, smses);
    }
    catch (Exception)
    {

        return Request.CreateErrorResponse(HttpStatusCode.Expecta
tionFailed, "error");
    }
}&lt;/pre&gt;&lt;br /&gt;
but it dont works...&lt;br /&gt;
&lt;br /&gt;
sorry for my bad english&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432386/432386/how-to-receive-json-array/</guid>
      <pubDate>Tue, 18 Jun 2013 05:44:06 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Re: how dose QR Code barcode library for ASP.NET works?</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/430627/432380/re-how-dose-qr-code-barcode-library-for-aspnet-works/#432380</link>
      <description>Where did you find the &lt;a href="http://www.barcodelib.com/asp_net/barcode_symbologies/qrcode.html"&gt;&lt;span style="color: Black;"&gt;ASP.NET QR Code barcode generator library&lt;/span&gt;&lt;/a&gt;? There should be tutorial for it.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/430627/432380/re-how-dose-qr-code-barcode-library-for-aspnet-works/#432380</guid>
      <pubDate>Mon, 17 Jun 2013 19:29:11 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Re: FREE ASP.NET PDF EBOOKS</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/374541/432363/re-free-aspnet-pdf-ebooks/#432363</link>
      <description>Nice sharing.&lt;br /&gt;
Many thanks for that. &lt;br /&gt;
But I wonder whether the free tools online have as many professional fuctions as the paid ones. &lt;br /&gt;
I used to read PDF files with another &lt;a href="http://www.yiigo.com/net-document-image-plugin/pdf-plugin/pdf-read.shtml"&gt;PDF viewer SDK whose processing way is simple and fast&lt;/a&gt;. &lt;br /&gt;
But I will try your sharing later and find more.&lt;br /&gt;
Thx again. &lt;br /&gt;
&lt;br /&gt;
Best regards, &lt;br /&gt;
Arron&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/374541/432363/re-free-aspnet-pdf-ebooks/#432363</guid>
      <pubDate>Mon, 17 Jun 2013 02:23:23 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Re: FREE ASP.NET PDF EBOOKS</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/374541/432362/re-free-aspnet-pdf-ebooks/#432362</link>
      <description>Nice sharing. &lt;br /&gt;
Many thanks for that. &lt;br /&gt;
But I wonder whether the free tools online have as many professional fuctions as the paid ones. &lt;br /&gt;
I used to read PDF files with another &lt;a href="#"&gt;PDF viewer SDK whose processing way is simple and fast&lt;/a&gt;. &lt;br /&gt;
But I will try your sharing later and find more. Thx again. Best regards, Arron&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/374541/432362/re-free-aspnet-pdf-ebooks/#432362</guid>
      <pubDate>Mon, 17 Jun 2013 02:17:54 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>web form</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432157/432157/web-form/</link>
      <description>Hai everyone. Can anyone explain about web form model&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432157/432157/web-form/</guid>
      <pubDate>Mon, 27 May 2013 23:14:09 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>web form</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432156/432156/web-form/</link>
      <description>Hai everyone. Can anyone explain about web form model&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432156/432156/web-form/</guid>
      <pubDate>Mon, 27 May 2013 23:12:18 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Re: Watermark an Image with an Image</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/371285/432152/re-watermark-an-image-with-an-image/#432152</link>
      <description>According to your description, I think you need &lt;a href="http://www.rasteredge.com/how-to/csharp-imaging/load-from-net-graphics/"&gt;load image from .NET graphics in C#.NET&lt;/a&gt;.AND you can follow the steps below to Load Image from .NET Graphics.&lt;br /&gt;
    Run Microsoft Visual Studio (2005 or later version);&lt;br /&gt;
    Create a project with programming language - Visual C#;&lt;br /&gt;
    Add RasterEdge.DotNetImaging.dll to your Visual C# applications;&lt;br /&gt;
    Call RasterEdge .NET Image Namespace.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/371285/432152/re-watermark-an-image-with-an-image/#432152</guid>
      <pubDate>Mon, 27 May 2013 19:33:05 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Re: Watermark an Image with an Image</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/371285/432151/re-watermark-an-image-with-an-image/#432151</link>
      <description>According to your description, I think you need &lt;a href="http://www.rasteredge.com/how-to/csharp-imaging/load-from-net-graphics/"&gt;load image from .NET graphics in C#.NET&lt;/a&gt;.AND you can follow the step below to Load Image from .NET Graphics.&lt;br /&gt;
    Run Microsoft Visual Studio (2005 or later version);&lt;br /&gt;
    Create a project with programming language - Visual C#;&lt;br /&gt;
    Add RasterEdge.DotNetImaging.dll to your Visual C# applications;&lt;br /&gt;
    Call RasterEdge .NET Image Namespace:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/371285/432151/re-watermark-an-image-with-an-image/#432151</guid>
      <pubDate>Mon, 27 May 2013 19:29:26 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>general</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432131/432131/general/</link>
      <description>Hai everyone. Is there any information regarding ASPX templates for Kentico 7&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.fita.in/dot-net-training-in-chennai/"&gt;dot net training in chennai&lt;/a&gt;&lt;br /&gt;
lisaedward&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href="http://www.fita.in/dot-net-training-in-chennai/"&amp;gt;Dot &lt;br /&gt;
&lt;br /&gt;
netTraining in Chennai&amp;lt;/a&amp;gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432131/432131/general/</guid>
      <pubDate>Sun, 26 May 2013 06:16:18 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>general</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432130/432130/general/</link>
      <description>Hai everyone. Is there any information regarding ASPX templates for Kentico 7&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.fita.in/dot-net-training-in-chennai/"&gt;dot net training in chennai&lt;/a&gt;&lt;br /&gt;
lisaedward&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href="http://www.fita.in/dot-net-training-in-chennai/"&amp;gt;Dot &lt;br /&gt;
&lt;br /&gt;
netTraining in Chennai&amp;lt;/a&amp;gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432130/432130/general/</guid>
      <pubDate>Sun, 26 May 2013 06:13:30 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Problem writing to a XML file</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432082/432082/problem-writing-to-a-xml-file/</link>
      <description>Hi,&lt;br /&gt;
Im using ASP.NET and C#.&lt;br /&gt;
Im trying to write to a Xml file but with no success, its just delete the old file and rewrite it with the new values, instead of adding to an exiting file.&lt;br /&gt;
this is my code:&lt;br /&gt;
&lt;a href="http://pastebin.com/6b4tZv4g"&gt;http://pastebin.com/6b4tZv4g&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432082/432082/problem-writing-to-a-xml-file/</guid>
      <pubDate>Wed, 15 May 2013 05:40:30 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Problem writing to a XML file</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432081/432081/problem-writing-to-a-xml-file/</link>
      <description>Hi,&lt;br /&gt;
Im using ASP.NET and C#.&lt;br /&gt;
Im trying to write to a Xml file but with no success, its just delete the old file and rewrite it with the new values, instead of adding to an exiting file.&lt;br /&gt;
this is my code:&lt;br /&gt;
&lt;a href="http://pastebin.com/6b4tZv4g"&gt;http://pastebin.com/6b4tZv4g&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432081/432081/problem-writing-to-a-xml-file/</guid>
      <pubDate>Wed, 15 May 2013 05:38:40 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>How to call Getslides method for ajax slideshow extender on demand( cu</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432044/432044/how-to-call-getslides-method-for-ajax-slideshow-extender-on-demand-cu/</link>
      <description>Hi&lt;br /&gt;
&lt;br /&gt;
 I have reg Ajax slideshow extender doubt&lt;br /&gt;
&lt;br /&gt;
I am trying to implement facebook style image slideshow on image click&lt;br /&gt;
&lt;br /&gt;
Here I am using mutiple modalpopup and ajax slideshow extender on every modal popup&lt;br /&gt;
&lt;br /&gt;
1) Please suggest me using mutiple modalpopup and ajax slideshow extender is best solution or I should modify the code.&lt;br /&gt;
&lt;br /&gt;
And using mutiple modalpopup extender and slideshow extnder will affect web application performance?&lt;br /&gt;
&lt;br /&gt;
2)On every page load GetSlides method is executing. i want to stop executing on every page load and should execute on demand&lt;br /&gt;
&lt;br /&gt;
when particuler slideshow is going to popup only that servise method should be executted not others&lt;br /&gt;
&lt;br /&gt;
Your Help will be apritiated, Look forrward for your help and support&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script runat="Server" type="text/C#"&amp;gt;&lt;br /&gt;
             &lt;br /&gt;
             &lt;br /&gt;
        [System.Web.Services.WebMethod]&lt;br /&gt;
        [System.Web.Script.Services.ScriptMethod]&lt;br /&gt;
        public static AjaxControlToolkit.Slide[] GetSlides()&lt;br /&gt;
        {&lt;br /&gt;
            return new AjaxControlToolkit.Slide[] {&lt;br /&gt;
            new AjaxControlToolkit.Slide&lt;br /&gt;
		("Images/Blue hills.jpg", "Blue Hills", "Go Blue"),&lt;br /&gt;
            new AjaxControlToolkit.Slide("Image/1.jpg", "Sunset", "Setting sun"),&lt;br /&gt;
            new AjaxControlToolkit.Slide("Image/2.jpg", "Winter", "Wintery..."),&lt;br /&gt;
            new AjaxControlToolkit.Slide&lt;br /&gt;
		("Image/3.jpg", "Water lillies", "Lillies in the water"),&lt;br /&gt;
            new AjaxControlToolkit.Slide&lt;br /&gt;
		("Image/4.jpg", "Sedona", "Portrait style picture")};&lt;br /&gt;
        }&lt;br /&gt;
       &lt;br /&gt;
    &amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;script type="text/javascript"&amp;gt;&lt;br /&gt;
    function ShowSlider()&lt;br /&gt;
    {&lt;br /&gt;
    debugger&lt;br /&gt;
     var panel =$find('mpslideshow1');&lt;br /&gt;
     &lt;br /&gt;
     &lt;br /&gt;
     panel.show();&lt;br /&gt;
    &lt;br /&gt;
&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
&amp;lt;input id="Image1" type="image" runat="server" src="~/Image/Sunset.jpg" onclick='javascript:ShowSlider();'&lt;br /&gt;
                        onmouseover="this.src='Image/Blue hills.jpg'" onmouseout="this.src='Image/Sunset.jpg'"&lt;br /&gt;
                        style="height: 100px; width: 100px" /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
        &amp;lt;asp:Panel runat="server" ID="pnlslideshow" BackColor="White" Height="400px" Width="400px"&lt;br /&gt;
            Style="border: solid 2px red;"&amp;gt;&lt;br /&gt;
            &amp;lt;asp:Image ID="imagefhfd" runat="server" ImageUrl="~/Image/Blue hills.jpg" /&amp;gt;&lt;br /&gt;
            &amp;lt;asp:SlideShowExtender ID="SlideShowExtender1" runat="server" TargetControlID="imagefhfd"&lt;br /&gt;
                SlideShowServiceMethod="GetSlides" AutoPlay="true" Loop="true" &amp;gt;&lt;br /&gt;
            &amp;lt;/asp:SlideShowExtender&amp;gt;&lt;br /&gt;
        &amp;lt;/asp:Panel&amp;gt;&lt;br /&gt;
        &amp;lt;input type="button" runat="server" id="prevButton" style="display: none" /&amp;gt;&lt;br /&gt;
        &amp;lt;input type="button" runat="server" id="playButton" style="display: none" /&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;input type="button" runat="server" id="dummybuton" style="display: none" visible="true" /&amp;gt;&lt;br /&gt;
    &amp;lt;asp:ModalPopupExtender runat="server" ID="mpslideshow1" BackgroundCssClass="modalBackground"&lt;br /&gt;
        BehaviorID="mpslideshow1" TargetControlID="Image1" PopupControlID="pnlslideshow"&amp;gt;&lt;br /&gt;
    &amp;lt;/asp:ModalPopupExtender&amp;gt;&lt;br /&gt;
In above code I have one image for that image one slideshow and modalpopup.&lt;br /&gt;
&lt;br /&gt;
Like this I have 8 diff images and for every image one album, so I am going to use separte modalpopup, slideshow extender, javascript function, servicemthod for slideshowextender.&lt;br /&gt;
&lt;br /&gt;
Thank you in advance&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432044/432044/how-to-call-getslides-method-for-ajax-slideshow-extender-on-demand-cu/</guid>
      <pubDate>Sun, 12 May 2013 23:55:55 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>DevExpress TreeList checkboxe, possibly bind</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432026/432026/devexpress-treelist-checkboxe-possibly-bind/</link>
      <description>Hi,&lt;br /&gt;
  Trying to get a treeList in DevExpress to have two columns&lt;br /&gt;
of checkboxes that can be checked and unchecked, and are populated&lt;br /&gt;
in code upon load (from database, but that part of the code I can&lt;br /&gt;
do) and maintain their checked and unchecked states upon reloading&lt;br /&gt;
the page.  In DevEx things can be tricky and it is difficult to&lt;br /&gt;
find solutions on google.  Anyways, it took me a while to find&lt;br /&gt;
out how to check and uncheck boxes and at the same time have them&lt;br /&gt;
set to specific states upon load.  But the problem is maintaining&lt;br /&gt;
those states.   If you don't know DevEx, you will not be able&lt;br /&gt;
to answer this question correctly, trust me, it's not something&lt;br /&gt;
simple like "use ViewState".  Anyways, it can be done by binding&lt;br /&gt;
a DataTable to the treeList, but the problem is when I bind,&lt;br /&gt;
the parent-child relationship is not there, even if the ID&lt;br /&gt;
and ParentID columns are defined and properly set. &lt;br /&gt;
If you have worked with DevEx and know what the difficulty with&lt;br /&gt;
what I'm talking about is, please help, as I have a deadline to meet&lt;br /&gt;
and google is getting me nowhere.&lt;br /&gt;
&lt;br /&gt;
If the binding solution will not work, I would accept some other&lt;br /&gt;
workaround.  I am using a DataCellTemplate in a TreeListCheckColumn&lt;br /&gt;
inside a TreeList.  The problem is if I call an event from the&lt;br /&gt;
CheckBox OnValueChanged, it's not firing, and even previously&lt;br /&gt;
when I was able to call an event from either the ASPxCheckBox (DevEx&lt;br /&gt;
CheckBox) or from the CheckColumn, the Key of the row is not available.&lt;br /&gt;
If you know how to get the even to fire and get the row, and set&lt;br /&gt;
the check state, please let me know, the difficulty is not in getting&lt;br /&gt;
the event to fire, that's just a simple lack of memory/saving my&lt;br /&gt;
code on my part. &lt;br /&gt;
If you've used DevEx and tried this problem before, you will know&lt;br /&gt;
what the difficulty I'm talking about is.  Anyways, if you know&lt;br /&gt;
a solution, please help.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432026/432026/devexpress-treelist-checkboxe-possibly-bind/</guid>
      <pubDate>Sat, 11 May 2013 14:41:10 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>DevExpress TreeList checkboxe, possibly bind</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/432025/432025/devexpress-treelist-checkboxe-possibly-bind/</link>
      <description>Hi,&lt;br /&gt;
  Trying to get a treeList in DevExpress to have two columns&lt;br /&gt;
of checkboxes that can be checked and unchecked, and are populated&lt;br /&gt;
in code upon load (from database, but that part of the code I can&lt;br /&gt;
do) and maintain their checked and unchecked states upon reloading&lt;br /&gt;
the page.  In DevEx things can be tricky and it is difficult to&lt;br /&gt;
find solutions on google.  Anyways, it took me a while to find&lt;br /&gt;
out how to check and uncheck boxes and at the same time have them&lt;br /&gt;
set to specific states upon load.  But the problem is maintaining&lt;br /&gt;
those states.   If you don't know DevEx, you will not be able&lt;br /&gt;
to answer this question correctly, trust me, it's not something&lt;br /&gt;
simple like "use ViewState".  Anyways, it can be done by binding&lt;br /&gt;
a DataTable to the treeList, but the problem is when I bind,&lt;br /&gt;
the parent-child relationship is not there, even if the ID&lt;br /&gt;
and ParentID columns are defined and properly set. &lt;br /&gt;
If you have worked with DevEx and know what the difficulty with&lt;br /&gt;
what I'm talking about is, please help, as I have a deadline to meet&lt;br /&gt;
and google is getting me nowhere.&lt;br /&gt;
&lt;br /&gt;
If the binding solution will not work, I would accept some other&lt;br /&gt;
workaround.  I am using a DataCellTemplate in a TreeListCheckColumn&lt;br /&gt;
inside a TreeList.  The problem is if I call an event from the&lt;br /&gt;
CheckBox OnValueChanged, it's not firing, and even previously&lt;br /&gt;
when I was able to call an event from either the ASPxCheckBox (DevEx&lt;br /&gt;
CheckBox) or from the CheckColumn, the Key of the row is not available.&lt;br /&gt;
If you know how to get the even to fire and get the row, and set&lt;br /&gt;
the check state, please let me know, the difficulty is not in getting&lt;br /&gt;
the event to fire, that's just a simple lack of memory/saving my&lt;br /&gt;
code on my part. &lt;br /&gt;
If you've used DevEx and tried this problem before, you will know&lt;br /&gt;
what the difficulty I'm talking about is.  Anyways, if you know&lt;br /&gt;
a solution, please help.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/432025/432025/devexpress-treelist-checkboxe-possibly-bind/</guid>
      <pubDate>Sat, 11 May 2013 14:39:19 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Re: how dose QR Code barcode library for ASP.NET works?</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/430627/431823/re-how-dose-qr-code-barcode-library-for-aspnet-works/#431823</link>
      <description>Hi&lt;br /&gt;
To &lt;a href="http://www.onbarcode.com/asp_net/qr-code-generator.html"&gt;generate QR code barcodes in ASP .NET Web Applications&lt;/a&gt;, you need to drag and drop a barcode generator control to your ASP .NET Windows Forms. For details, you may refer to the user guide you got.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/430627/431823/re-how-dose-qr-code-barcode-library-for-aspnet-works/#431823</guid>
      <pubDate>Sat, 06 Apr 2013 21:09:33 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Re: how dose QR Code barcode library for ASP.NET works?</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/430627/431822/re-how-dose-qr-code-barcode-library-for-aspnet-works/#431822</link>
      <description>Hi&lt;br /&gt;
To &lt;a href="http://www.onbarcode.com/asp_net/qr-code-generator.html"&gt;generate QR code barcodes in ASP.NET Web Applications&lt;/a&gt;, you need to drag and drop a barcode generator control to your ASP.NET Windows Forms. For details, you may refer to the user guide you got.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/430627/431822/re-how-dose-qr-code-barcode-library-for-aspnet-works/#431822</guid>
      <pubDate>Sat, 06 Apr 2013 21:05:56 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Best way to do authentication?</title>
      <link>http://www.programmersheaven.com/mb/ASPNET/431316/431316/best-way-to-do-authentication/</link>
      <description>I've designed and built my database containing all user info and such.  Should I use ASP.NET Web Site Administration toolkit(login, user database) which would then give me two separate databases that I would have to use when updating user info???  OR should I create my own authentication just using my one database???  If the latter is desired, can someone point me to the right resources in learning authentication and webpage-to-user association???&lt;br /&gt;
 &lt;br /&gt;
This is bugging me because I'm thinking I should have set up the administration stuff first, THEN added all my other tables to that database...</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ASPNET/431316/431316/best-way-to-do-authentication/</guid>
      <pubDate>Sun, 17 Feb 2013 10:43:49 -0700</pubDate>
      <category>ASP.NET</category>
    </item>
  </channel>
</rss>