Search

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

Matching Posts

  • Re: DataGrid button column and Javascript.

    Try this one If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then Dim oLinkButton As LinkButton = CType(e.Item.Cells(0).Controls(0), LinkButton) oLinkButton.Attributes.Add("onclick", "return ConfirmOnExpire();") End If
    Posted to Data Presentation Controls (Forum) by subhendude on 6/24/2009
  • Can't use Logging Apllication Block for ASP.NET due to some security permission

    I am using EntLib-June2005 as it was for .net 1.1 framework. I want to use the logging application block(LAB). Several times, I used the LAB in windows application and it worked for me. Now when I was trying to put the logger in asp.net appplication, it is showing some error like ASP.NET doesn't have the required permission to write the log. It seems to me ASP.NET doesn't able to access the filesystem/eventlog in the webserver. So I need to put some security configuration in my web.config
    Posted to Microsoft Application Blocks (Forum) by subhendude on 6/19/2009
  • Re: Button instead of HyperLink.

    < asp:GridView ID= "Grd" runat= "server" AutoGenerateColumns= "False" OnRowCommand= "Grd_RowCommand" > < Columns > < asp:TemplateField HeaderText= "Name" > < ItemTemplate > < asp:Button ID= "btn1" CommandArgument= ' <%# Eval("DownloadLink") %> ' Text= ' <%# Eval("DownloadLink") %> ' CommandName= "Remediate" runat= "server" ></ asp:Button
    Posted to Getting Started (Forum) by subhendude on 6/19/2008
  • Re: Wheres the app_code folder in a Web_applcation?

    .NET 2.0 You can create App_Code folder by right clicking on your project in solution explorer and clicking the Add ASP.NET folder. .NET 1.1 There is no App_Code folder. If you want to use you can create some physical os folder in your solution.
    Posted to Getting Started (Forum) by subhendude on 6/19/2008
  • Re: c# treeview help

    Hi Welshpunk, I have thought about your problem and let me describe you about how to do that. See in ASP.NET, you can bind the HeirarchyDataSource(xmldatasource,sitemapdatasource) with Treeview control. DataSet could not be bound with Treeview because Dataset class does not implement IHeirarchyDataSource. So now the question is how you can do that.... You can do this thing filling multiple collections and iterating as well as adding the collections to teeview control. col1 ===== First u write a procedure
    Posted to Getting Started (Forum) by subhendude on 6/19/2008
  • Re: c# treeview help

    Hi welshpunk, This guy has done a wonderful job.... You can go thru it to solve the problem..... http://www.codeproject.com/KB/tree/bindablehierarchicaltree.aspx
    Posted to Getting Started (Forum) by subhendude on 6/18/2008
  • Re: Diff between server.transfer and respone.redirect

    If u write Server.Transfer then it will process the request at the server side means during page processing at the server side, it encounters a server.transfer statement, so immediately it transfers the control to the destination page(server.transfer page). For Response.Redirect, when server sends response to client, it encounters a Response.Redirect statement, so it again request for new page(response.redirect page). Then server responses back with the specified page. Now see this is total of two
    Posted to Web Forms (Forum) by subhendude on 6/18/2008
  • Re: Can a function return two (2) values?

    If u r using C# language, then there is a concept of out parameter. Through out parameter, u can easily set the value which modified within a function. Its just like the Database Procedure output parameter.
    Posted to Getting Started (Forum) by subhendude on 11/14/2007
  • Re: Class Library advantages/disadvantage

    Obviously there is advantages. If u deploy ur dll in various servers(web farm), then performance will be automatically increased. If u deploy ur BL dll into MTS Server, then object pooling, automatic transaction management will automatically happen. Apart from that, if u write ur every layer as a component(dll) then it will very easy to maintain the whole project.
    Posted to Getting Started (Forum) by subhendude on 11/14/2007
  • Re: Table Alignment from CodeBehind

    Use the technique what mustakim said. Others way to do is put the text in a span tag and make the alignment of the span at center.
    Posted to Web Forms (Forum) by subhendude on 11/13/2007
Page 1 of 6 (52 items) 1 2 3 4 5 Next > ... Last »