Search

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

Matching Posts

  • Re: Another menu is not displaying in IE6 using css control adapters

    That did it! Thanks Russ! I added the widths and the menus appeared. /* menu section for css control adapter menu*/ ul.AspNet-Menu { position: relative; } ul.AspNet-Menu, ul.AspNet-Menu ul { margin: 0; padding: 0; display: block; width: 600px; } ul.AspNet-Menu li { position: relative; list-style: none; float: left; background: url("../../images/btnMenuLarge.jpg") no-repeat center; height:34px; width:200px; margin-left:3px; } ul.AspNet-Menu li:hover { position: relative; list-style: none;
    Posted to CSS Friendly Control Adapters (Forum) by arora on 9/25/2007
  • Another menu is not displaying in IE6 using css control adapters

    Hi: What am I doing wrong? I've copied the CSS, JavaScript, App_Code/Adapter folders to the Asp.net Web Site project. I've copied the App_browsers/CSSFirendlyAdapters.browser and commented out all other controlAdapters but <adapter controlType="System.Web.UI.WebControls.Menu" adapterType="CSSFriendly.MenuAdapter" /> The page source looks right but the menu displays on IE7, FF2 but not IE6 <div class="AspNet-Menu-Horizontal"> <ul class="AspNet
    Posted to CSS Friendly Control Adapters (Forum) by arora on 9/24/2007
    Filed under: css adapters ie6 menu
  • Re: The requested operation cannot be completed because the connection has been broken.

    Hi: This was related to the asynchronously processing within the transaction. I took all the async code out and everything was ok. The code that caused the error was like this: Using conn As SqlConnection = New SqlConnection(ConfigurationManager.ConnectionStrings("ConnectionString").ConnectionString) Using tsc As New TransactionScope() Try conn.Open() taProfile = New ProfileTableAdapters.tblProfileTableAdapter taInventory = New InventoryTableAdapters.tblInventoryTableAdapter taCrew = New
  • Re: The requested operation cannot be completed because the connection has been broken.

    Al: More than 15 seconds. I'll add Connection Timeout=120 to the connection string and test it out. Thanks. Bookmarked your blog. arora
  • The requested operation cannot be completed because the connection has been broken.

    Hi: I play around with a game application that I try different stuff I read about on asp.net. This exception happens with an attempt to add transaction to table adapters (I use the method in http://blah.winsmarts.com/2006/06/18/the-definitive-tableadapters--transactions-blog-post.aspx ). When one player attacks another simultaneously, the error message appears. Some of table updates are done asynchronously (it seemed like a good idea at the time). Here is the exception. Thanks arora Exception of
  • Can the stored procedure statements be accessed from ado.net?

    Hi: I create stored procedures dynamically. In a resource file, there is a string that checks for the sproc existence and if doesn't exist, creates the procedure. Like this: USE {0}; IF EXISTS (SELECT name FROM sysobjects WHERE name = {1} AND type = 'P') RETURN ELSE EXEC (' CREATE PROCEDURE [dbo].[{1}] ... The sproc can then be called using the Command object. The problem is if the resource file is changed, the sproc should be altered. If I could access the stored procedures statements from the command
    Posted to Data Access and ObjectDataSource Control (Forum) by arora on 3/22/2007
    Filed under: STOREd Procedures COMMAND ADO.NET ASP.NET
  • Index on field in SQLTableProfile

    Hi: I am using SQLTableProfileProvider to add properties like First Name, Last Name and Alias. What's different is that the Alias field has a unique index in the table. myAccount.aspx updates the added profile properties. There is an Update button that has this click event handler code ... If Not String.IsNullOrEmpty(firstName) Then Profile.FirstName = txtFirstName.Text End If If Not String.IsNullOrEmpty(lastName) Then Profile.LastName = txtLastName.Text End If If Not String.IsNullOrEmpty(strAlias
    Posted to Security (Forum) by arora on 11/5/2006
    Filed under: Profile, SQLTableProfileProvider, Index, SQLException
  • Deploying a zip file

    Hi: I have a ASP.NET Web Site that is exported as a template. I would like to deploy the resulting zip file. I added a Deployment and Setup Project. Selected the File System View. Selected Add a File to the Application Folder and Browsed to where the template zip file was located but it wasn't displayed. Is it possible to deploy a zip file this way? arora
    Posted to Configuration and Deployment (Forum) by arora on 7/27/2006
  • Implementing IDataReader

    Hi: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpcontemplateconnectioncs.asp I am following the TemplateDataReader.cs example in the above link. I also have classes similar to the SampleDb.cs and SampleDbResultSet. Except that instead of using a two dimension array object[,] for data, I used an ArrayList called rows that adds an ArrayList called columns. The data reader works for code like: MyDataReader dr = (MyDataReader)cmd.ExecuteReader(); while (dr.Read())
  • Re: Dynamic Grid not AllowPaging

    Hi: Not to worry - this last change seemed to work. I even removed the PageIndexChanging event handler and it is allright. I guess I was confused because the GridView is a WebPart and when I was in the Catalog mode adding the web part to a zone, some rows were displayed but the paging didn't work in the Catalog mode. When I went to Browse mode, the rows disappeared. That's when I posted the post above. But when the Properties were set up properly in the Edit mode, the rows returned with paging. That
    Posted to Data Presentation Controls (Forum) by arora on 6/22/2006
Page 1 of 3 (26 items) 1 2 3 Next >