Search

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

Matching Posts

  • Re: Database layer problem

    thanks for reply .... you are right i had to change the whole data layer. i thought that if different assemblies the shared veriable is not shared anymore but actually it is shared no matter how many assemblies you cross ehehehe.... prety bad variable this one.
  • Re: Database layer problem

    hi guys thanks for reply i think it will be easy for you to understand if i post my code.. here is my dataaccess class. 01.Imports System 02.Imports System.Data 03.Imports System.Data.SqlClient 04.Imports Toms.Common 05. 06.Namespace DataA.SqlClient 07. Public Class DataAccess 08. 09. Shared SqlConn As SqlConnection = Nothing 10. Public Shared SqlComm As SqlCommand = Nothing 11. Shared SqlDA As SqlDataAdapter = Nothing 12. Shared SqlTA As SqlTransaction = Nothing 13. Shared sSPToExecute As String
  • Re: Strange Problem

    hi thanks for reply i have set the pool setting to false in connection string and max pool size is 100 which is by default. and also now i am getting a different type problem.. on some store procedures it gives me message of wrong number of parameters even when single user is using there is no problem. and also one place the error is of "ExecuteReader requires an open and available Connection. The connection's current state is connecting." can please help me find out problem as with
    Posted to Web Forms (Forum) by yjaved on 10/14/2009
  • Re: Strange Problem

    Hi Srinivas Ramanujan thanks for your help.. sorry for lare reply i read your last reply and note that the dataaccess class were all shared methods so i made a separate project containing dataaccess class so this way i have separate DLL of dataaccess class and i have to import it on everypage where i am need .. now this way i thought i would work as shared methods are in differant assemblies and shared variabled are only for same assembly right?? now this solve one problem that users are not sharing
    Posted to Web Forms (Forum) by yjaved on 10/12/2009
  • Database layer problem

    Dear all i am in bit of trouble and need you experts opinions. Actually we have just finished UAT for a web project and everything went fine and then finally we deployed for production and in production we had arround 26 users doing testing and the whole project start behaving weired. Actually i have 3 layers UI layer, Bussines layer and data layer and all layers are in different projects (assemblies) . and in data layer i have one common dataaccess class with all methods as Protected Friend Shared
  • Re: Crystal Report messed up in IE8

    try emulating IE7 . it worked for me .. use this in head section of page. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
    Posted to Crystal Reports (Forum) by yjaved on 9/19/2009
  • Re: btnAddToCart_Click

    dont really get wut you looking for ..... there is already a button with that name on the page inside the grid <asp:ImageButton ID="btnAddToCart" runat="server"ImageUrl="~/Images/ok.gif" ImageAlign="AbsMiddle" Onclick="btnAddToCart_Click" />
    Posted to TheBeerHouse Starter Kit (Forum) by yjaved on 7/13/2009
  • Re: text-align = centre not working for IE8

    wel did u try <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> it worked for me
    Posted to Client Side Web Development (Forum) by yjaved on 7/11/2009
  • Re: gridview button problem

    on click event of the button try this Dim gvRow As GridViewRow = CType ( CType (sender, Button).Parent, DataControlFieldCell).Parent it will give you the row which contain the clicked button then you can use the rowindex to get row number dim RowNumber as interger = gvRow.RowIndex
    Posted to Data Presentation Controls (Forum) by yjaved on 7/8/2009
  • Re: Format integer

    i think alternative can be select case statement....
    Posted to Getting Started (Forum) by yjaved on 7/8/2009
Page 1 of 23 (227 items) 1 2 3 4 5 Next > ... Last »