Search

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

Matching Posts

  • Best method to Create Database if not exists?

    Hi All, I am using VWD2008Express. I have a class library that does some custom error handling. As part of that library, I am logging my errors to a database. I would like the database to be created automatically by the class library if it doesn't already exists. My question: is there a simple way of achieving this (i.e. using the data models, or something similar) rather than coding all the SQL statements by hand into the DLL?
  • Re: Localization Question

    Please don't reply by promoting products. I'm seeking discussion, not looking for advice on purchasing books.
    Posted to Getting Started (Forum) by miggl on 7/8/2008
  • Localization Question

    Is there a drawback to removing the Text attributes from ASP.NET controls after localizing them? Or asking the other question: is there a benefit to keeping them? I would like to do the following: <asp:Label ID="Label1" Text="My Text Here" meta:resourcekey="Label1Resource1" /> and then change it to: <asp:Label ID="Label1" meta:resourcekey="Label1Resource1" /> The reason for this is maintenance: I don't want to have to make any textual
    Posted to Getting Started (Forum) by miggl on 7/8/2008
  • Re: Is the Ajax Toolkit Dead in the water?

    Hi Eric, As per our conversation last night, the following represents the use case where the calendar malfunctions, despite the z-index fix: 1 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %> 2 3 <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %> 4 5 < !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http
    Posted to ASP.NET AJAX Control Toolkit (Forum) by miggl on 7/1/2008
  • Re: CalendarExtender control "drops down" behind other page objects

    Here's how I went about fixing this delemna for myself: I removed any occurrence of [element] * {position: relative;} so that only intended specific elements were declared with position: relative; where necessary. Besides, the liberal use of positioning everything relative may not only break the calendar, but have unforeseen consequences down the line when implementing other components. I then only had to specify the z-index of the calendar as follows: 1 . ajax__calendar 2 ,. ajax__calendar_container
    Posted to ASP.NET AJAX Control Toolkit (Forum) by miggl on 6/5/2008
  • ASP.NET with XHTML1.1 Strict Mode - Warnings

    Hi all, I have implmented <xhtmlConformance mode="Strict"/> in Web.config, but am seeing the following when validating the source produced in Firefox: line 10 column 1 - Warning: <input> ID "__EVENTTARGET" uses XML ID syntax line 11 column 1 - Warning: <input> ID "__EVENTARGUMENT" uses XML ID syntax line 12 column 1 - Warning: <input> ID "__VIEWSTATE" uses XML ID syntax line 173 column 2 - Warning: <input> ID "__EVENTVALIDATION"
    Posted to Getting Started (Forum) by miggl on 6/5/2008
  • Re: CalendarExtender control "drops down" behind other page objects

    Thanks for the good suggestions, however, non of these are working for me either. How has this been addressed? My calendar disappears behind any following page elements, be it HRs, TABLEs, DIVs. How have people worked around this? Does it need to be placed inside an updatepanel? [Update] I have identified the source of the problem as the following CSS declaration (in my CSS): 1 * 2 { 3 position: relative; 4 } While then explicitly declaring the following (see following code) restores correct display
    Posted to ASP.NET AJAX Control Toolkit (Forum) by miggl on 6/4/2008
  • CalendarExtender shows behind RoundedCornersExtender

    Hi guys, As you can probably tell from the heading, I'm having layout issues with the RoundedCornerExtender and CalendarExtender playing nice together. The RoundedCorner seems to always overlap the calendar extender, regardless of the z-index I place the calendar extender on. (However, the z-index does fix the issue in FF, but it still persists in IE). Also, when the calendar displays, it creates a small gap of whitespace between my fieldset and the surrounding div, on which the rounded corners
    Posted to ASP.NET AJAX Control Toolkit (Forum) by miggl on 6/3/2008
  • Re: Trim Text Before Validating

    Sometimes the simplest way is the best way. I added the onblur event, and it works like a charm. There were two reasons I hadn't thought of using it: it didn't show up in the intellisense, and I was doubtful that it would fire prior to the validation events. But lo and behold, it does. Thanks! Mike
    Posted to Web Forms (Forum) by miggl on 5/16/2008
  • Trim Text Before Validating

    Hi All, Business is requiring that all input fields be trimmed prior to validation. I am using the ASP.NET validation controls (client-side enabled to reduce server trips). Is there any way at all to achieve this? Thanks! Mike
    Posted to Web Forms (Forum) by miggl on 5/16/2008
Page 1 of 10 (99 items) 1 2 3 4 5 Next > ... Last »