Search

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

Matching Posts

  • I need to hid a Panel in MasterPage - need help

    Hi, I have a master page called 'PFEPMasterPage.master' and in the top content I have a panel called ' PnlTopMaster ' in which I have a drop down and couple of lables to display who logged in and another link to log out . Now, I want this panel to be displayed only when a user logs in (using a Login.aspx content page) but couldn't accomplish it. This is what I am doing in tye master page page_load. public partial class PFEPMasterPage : System.Web.UI.MasterPage { protected void
  • Re: I need to hid a Panel in MasterPage - need help

    That was the first thing I did but I had not luck (though I made the visibility to true in my Login.aspx.cs). Thanks, L
  • Re: I need to hid a Panel in MasterPage - need help

    I finally ended up doing like this and it works now. My Login.aspx code: ASPxlblLoginMsg.Text = string.Empty; EntryAccracyDAL mydal = new EntryAccracyDAL(); bool UserLoggedIn = mydal.GetADSILogin(ASPxTxtUserID.Text, ASPxTxtPwd.Text); if (UserLoggedIn) { string fullName = HelperClass.fName + " " + HelperClass.lName; Session["fullName"] = fullName; Session["LoggedIn"] = true; //Panel MasterPanel = Master.FindControl("PnlTopMaster") as Panel; Response.Redirect
  • Re: Strongly typed Dataset - need help

    I am not sure if my VS2005 installs correctly. I think it installs correctly because I have developed few applications and moved to the production and they work great. So it should have installed correctly. As far creating the typed dataset with the wizard I do not understand what you mean I guess the problem I am having is to create a Typed Dataset. I do not know how to create or can't create a typed dataset once I pulled a table on to an .xsd file. I do not see any source code generated under
  • Re: Strongly typed Dataset - need help

    Qian, Thanks for the reply. I am using VS 2005 and below are the steps I have done to create a typed dataset. 1).Right clicked on my project and clicked on add new item. 2).Selected the .xsd file and named to say 'PlantInventoryAccuracy.xsd' and I got message that it adds under App_code and I clicked Yes. 3). I got the Table adapter wizard popped up but cancled it. Note: Originally I tried to navigate through this wizard and make use all my stored procs (Select, Insert, and Update) but no
  • Strongly typed Dataset - need help

    Hi, I right clicked on my project and added a dataset called 'PlntAccuracySWDst.xsd' and dragged the table that I want to work with from the server Exploerer and the table is 'PlantInventoryAccuracy'. I am trying to access this dataset in my code behind PlntAccuracySWDst mySWdst = new PlntAccuracySWDst (); For some reason I can't see 'PlantInventoryAccuracyTableAdapter' and 'PlantInventoryAccuracy' datatable objects when I do the 'mySWdst.' in my codebehind
  • Re: Strongly typed Dataset - need help

    Looks like I need to generate the Schema as a typed dataset. But when I right click on the dataset I do not see the 'Generate Dataset' option for me to select. so there is not PlntAccuracySWDst.cs file under my .xsd file and I guess that is the reason why (becuase there is no Schema generated) I can't access it from my code behind file. I am still looking for help. Thanks, L
  • Re: Strongly typed Dataset - need help

    I just found out that the the 'Generate Dataset' option is under the View/Tollbars/DataDesign. I just selected it and this action placed a small tool bar under the Standard Tool bar. The 'Generate Dataset' is one of the icons in it. But unfortunately it is disabled. I am not sure what I am missing here. I need to be able to create the Schema by clicking the 'Generate Dataset' option. I am still looking for help. Thanks, L
  • Business Layer and Data Layers - need help

    Hi, Our data gets stored in AS400, SQL Server 2005 and Oracle. Our folks kind of writing their own connections every time they need to connect to the databases. So I am thinking to create a Data layer and Business layer for us to use during the brand new application developement in .NET. These layers should be inheritable and extendable to fit the needs of new development specific to the project. I am wondering if there are any templates online for me to download and start from there. I would like
    Posted to Architecture (Forum) by lusty_learner on 10/26/2009
  • MasterDeatils GridView - How do I get the Master KeyValueField in a href

    Hi, I have MasterDetails gridView. Below is the link that I building to pass via querystring in my Details gridView. Container.Keyvalue gives me the Details gridview keyValueField value and Session["myDate"] is from my code behind page. I also want to add the value of the KeyValueField of my Master gridView. Can some one help me with this. < DataItemTemplate > < a id ="A1" target ="_blank" href ="AdjustFactor.aspx?id= <%# Container.KeyValue%> &Date
    Posted to Data Presentation Controls (Forum) by lusty_learner on 10/16/2009
Page 1 of 26 (253 items) 1 2 3 4 5 Next > ... Last »