Search

You searched for the word(s): userid:782422

Matching Posts

  • Re: * * * * Show document link in gridview and if click the link it should open in Excel Window. * * * *

    Imports System.Data.SqlClient Partial Class DocumentHandler Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim conString As String = "connection string" Response.ContentType = "application/ms-excel" Response.AddHeader("Content-Disposition", "attachment; filename=" + Request.QueryString("NWOID")) Dim con As SqlConnection = New SqlConnection(conString) Dim cmd As SqlCommand =
    Posted to Data Presentation Controls (Forum) by flohaas on 9/8/2009
  • Re: Weird Behaviour of IE

    Yes , it is working in Firefox but not working in IE 6,7,8 when i press F11 to make fullscreen, the application gone, can u help me..
    Posted to Web Forms (Forum) by flohaas on 8/10/2009
  • Weird Behaviour of IE

    we have developed web application in asp.net 2.0 and ajax 1.0 . we are opening applciation in IE and after that Press F11 to make it Fullscreen. But the page not loading, just getting top banner alone. how can i fix it plz advice on this
    Posted to Web Forms (Forum) by flohaas on 8/8/2009
  • Re: Ajax 1.0 Vs Ajax 3.5

    Hi DarrellNorton ! .. Thank you for your response. but i couldnt understand yet. my question is : how do i make my application which is in Asp.net 2.0, Ajax 1.0, to work in the server which has asp.net 3.5 and Ajax 3.5. thanks
    Posted to Installation and Setup (Forum) by flohaas on 7/31/2009
  • Re: Refresh Page Back To Gridview Data I Was at Previously

    hi, 1. you should not redirect to same page. if so, the controls gets refreshed and will lost the old values. 2. you need to bind the dropdown before and after postback. thats it.
    Posted to Visual Basic .NET (Forum) by flohaas on 7/31/2009
  • Ajax 1.0 Vs Ajax 3.5

    Hi all, We have developed web application in asp.net 2.0, ajax 1.0. we used ajax controls in it. now we are deploying in a server which has asp.net 3.5 and ajax 3.5. but i shows error like "Unable to create type 'ajaxToolkit:CalendarExtender'. Could not load file or assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified." what to do how to rectify it? plx
    Posted to Configuration and Deployment (Forum) by flohaas on 7/30/2009
  • Ajax 1.0 Vs Ajax 3.5

    Hi all, We have developed web application in asp.net 2.0, ajax 1.0. we used ajax controls in it. now we are deploying in a server which has asp.net 3.5 and ajax 3.5. but i shows error like "Unable to create type 'ajaxToolkit:CalendarExtender'. Could not load file or assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified." what to do how to rectify it? plx
    Posted to Installation and Setup (Forum) by flohaas on 7/30/2009
  • Re: Bug in ModalPopup? (vertical scrollbar)

    HI mga911 it is not working... wht to do...
    Posted to ASP.NET AJAX Control Toolkit (Forum) by flohaas on 7/4/2009
  • Re: Update Progress control is not displaying

    Refer this.. u may get ur problem solved... http://forums.asp.net/t/1174491.aspx my articles
    Posted to ASP.NET AJAX UI (Forum) by flohaas on 6/1/2009
  • Re: how to assign session value

    try like this: change code according to ur requirment... Int32 newProdID = 0; string sql = "INSERT INTO Production.ProductCategory (Name) VALUES (@Name); " + "SELECT CAST(scope_identity() AS int)" ; using (SqlConnection conn = new SqlConnection(connString)) { SqlCommand cmd = new SqlCommand(sql, conn); cmd.Parameters.Add( "@Name" , SqlDbType.VarChar); cmd.Parameters[ "@name" ].Value = newName; try { conn.Open(); newProdID = (Int32)cmd.ExecuteScalar(); } catch
    Posted to Getting Started (Forum) by flohaas on 5/30/2009
Page 1 of 19 (189 items) 1 2 3 4 5 Next > ... Last »