User Alison - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T04:54:12Zhttp://stackoverflow.com/feeds/user/3742http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1931136/changing-radcombobox-font-color-when-disabled-in-asp-net/1931369#19313690Answer by Alison for Changing RadCombobox Font Color when Disabled in ASP.NETAlison2009-12-18T23:57:54Z2009-12-18T23:57:54Z<p>Try modifying the preset CSS selector for the RadComboBox. Take a look <a href="http://www.telerik.com/help/aspnet-ajax/combo%5Fappearancecssselectors.html" rel="nofollow">here</a>.</p>
<p>It seems like the following should do the trick:</p>
<pre><code>.rcbDisabled { background-color: #808080; color:Blue; font-weight:bold; }
</code></pre>
http://stackoverflow.com/questions/1930375/why-does-visiblefalse-work-on-a-gridview-but-not-label/1930385#19303853Answer by Alison for Why does Visible='<%#false%>' work on a GridView but not label?Alison2009-12-18T20:01:18Z2009-12-18T20:01:18Z<p><%# %> works only on databound items.</p>
<p>you need to change it to <%= %> (Notice the "=")</p>
http://stackoverflow.com/questions/1868743/rserroropeningconnection-could-not-obtain-information-about-windows-nt-group-us/1907521#19075210Answer by Alison for (rsErrorOpeningConnection) Could not obtain information about Windows NT group/userAlison2009-12-15T13:36:40Z2009-12-15T13:36:40Z<p>Try unchecking “Impersonate the authenticated user after a connection has been made to the data source.”</p>
http://stackoverflow.com/questions/78536/cloning-objects-in-c19Cloning objects in C#Alison2008-09-17T00:06:27Z2009-12-02T17:39:54Z
<p>I want to do something like...</p>
<pre><code>myObject myObj = GetmyObj()//create and fill a new object
myObject newObj = myObj.Clone();
</code></pre>
<p>...and then make changes to the new object that are not reflected in the original object.</p>
<p>I don't often need this functionality so when it's been necessary I've resorted to creating a new object and then copying each property individually but it always leaves me with the feeling that there is a better/more elegant way of handling the situation.</p>
<p>How can I clone/deep copy an object so that the cloned object can be modified without any changes being reflected in the original object?</p>
http://stackoverflow.com/questions/1727107/linq-to-sql-insert-select-foreign-primary-records/1727234#17272341Answer by Alison for Linq to SQL insert/select foreign/primary recordsAlison2009-11-13T05:06:11Z2009-11-13T05:06:11Z<p>When building your data context class, make sure to first set up an association between Table A & Table B.</p>
<p>The following should give you an idea of how to insert or update an object from Table B with a child relationship to Table A. Basically, you check to see if the object B exists. If it exists then return its ID. If not, create object A, add it to object B, and then insert object B. By creating object B, LINQ to SQL will insert the necessary information into both Table A & B. </p>
<pre><code>DataContext db = new DataContext();
//Build object A
ObjectTableA objA = new objA();
objA.prop1 = ...
objA.prop2 = ...
// Check to see if the object exists in Table B
var query = from b in db.TableB
where b.Name == name
select b;
ObjectTableB objb = query.FirstOrDefault();
//if objb does not exist then create and insert a new object B
if (!objb) {
objB = new ObjectTableB();
objB.Name = name;
//add objA
objB.propA = objA;
db.TableB.InsertOnSubmit(objB);
db.SubmitChanges();
}
return objB.ID;
</code></pre>
http://stackoverflow.com/questions/1726962/how-to-add-script-codes-before-the-body-tag-asp-net/1726999#17269991Answer by Alison for How to Add script codes before the </body> tag ASP.NET Alison2009-11-13T03:41:33Z2009-11-13T03:41:33Z<p>Take a look at <a href="http://msdn.microsoft.com/en-us/library/asz8zsxy.aspx" rel="nofollow">RegisterStartupScript</a></p>
<p>The script block will be placed right above the <code></form></code> tag at the end of the page.</p>
http://stackoverflow.com/questions/803743/vsto-word-2007-how-can-a-control-be-programmatically-moved-above-below-the-rang1VSTO Word 2007: How can a control be programmatically moved above/below the range of an existing control?Alison2009-04-29T18:56:20Z2009-11-11T18:00:03Z
<p>I am developing a Word 2007 document template with VSTO. The document has several RichTextContentControls and there is a visible ActionsPane with a treeview control where the nodes of the treeview are the names of the RichTextContentControls. </p>
<p>Users can re-order nodes by dragging/dropping nodes to new locations in the treeview. As nodes are dropped, the corresponding RichTextContentControls should be re-ordered according the new node locations.</p>
<p>I am able to find the Range of the control that the new control is supposed to be moved above of. Now I only need to find a way to simply...move the control to this new location.</p>
<p>How can I move a control above/below a range?</p>
http://stackoverflow.com/questions/55363/best-tools-for-creating-website-wireframes15Best tools for creating website wireframesAlison2008-09-10T21:31:50Z2009-11-04T22:07:36Z
<p>When creating a wireframe for a website, I always start with a <a href="http://v1.garrettdimon.com/resources/templates-stencils-for-visio-omnigraffle" rel="nofollow">Visio wireframe stencil from Garrett Dimon</a>. The stencil is amazing but it has been a few years since it has been updated and I'm looking for something new and exciting. </p>
<p>What wireframing tool(s) do you use, if any?</p>
http://stackoverflow.com/questions/55363/best-tools-for-creating-website-wireframes/1676982#16769820Answer by Alison for Best tools for creating website wireframesAlison2009-11-04T22:03:38Z2009-11-04T22:03:38Z<p>I just came across <a href="http://gomockingbird.com/" rel="nofollow">Mockingbird</a> and it looks very interesting. </p>
http://stackoverflow.com/questions/1646007/how-do-i-set-a-table-background-programmatically-while-running-an-asp-net-page/1646013#16460132Answer by Alison for How do I set a table background programmatically while running an asp.net page?Alison2009-10-29T19:28:54Z2009-10-30T22:07:10Z<p>Place <code>runat="server"</code> in the table tag</p>
<p>Once you've done that you'll be able to access the table programmatically. </p>
<p>To change the background color directly, try:</p>
<pre><code>if (rdoStatus.SelectedValue == "181003")
{
tblSheet.Style.Add("background-color", "#ff9a9a");
}
else
{
tblSheet.Style.Add("background-color", "#99ccff");
}
</code></pre>
<p>if you're using stylesheets you can, try this:</p>
<pre><code>if (rdoStatus.SelectedValue == "181003")
{
tblSheet.CssClass = "default_color"
}
else
{
tblSheet.CssClass = "other color"
}
</code></pre>
http://stackoverflow.com/questions/1620452/control-cache-in-asp-net/1620873#16208730Answer by Alison for Control Cache In asp.netAlison2009-10-25T13:07:01Z2009-10-25T13:07:01Z<p>To insert the control into the cache:</p>
<pre><code>//Make sure to adjust the expiration of the cache with a contstant
Cache.Insert("pnlPanelMessage", pnlMessage, null, DateTime.MaxValue, TimeSpan.FromMinutes(15));
</code></pre>
<p>To retrieve the control fromt he cache:</p>
<pre><code>System.Web.UI.WebControls.Panel pnlMessage = (System.Web.UI.WebControls.Panel)Cache.Get("pnlPanelMessage")
</code></pre>
<p>MSDN: <a href="http://msdn.microsoft.com/en-us/library/aa478965.aspx" rel="nofollow">ASP.NET Caching: Techniques and Best Practices</a></p>
http://stackoverflow.com/questions/1601736/multiple-webrequests-asynchronously-in-asp-net/1601776#16017760Answer by Alison for multiple webrequests asynchronously in asp.net?Alison2009-10-21T15:50:42Z2009-10-21T15:50:42Z<p>How about launching each request on their own separate thread and then appending the results to the list?</p>
http://stackoverflow.com/questions/1520067/embedded-images-in-html-email-not-displaying-on-mobile-phones1Embedded images in HTML email not displaying on mobile phonesAlison2009-10-05T13:27:56Z2009-10-20T13:41:10Z
<p>I have an application that sends an HTML formatted email with embedded images. The email looks perfect on many different desktop/web clients. When the email is viewed on a mobile phone that supports HTML email (tested on iPhone, WinMo 6.1) the images are displayed as red 'X's. All other HTML is being displayed correctly. To be clear, the problem is ONLY occurring on mobile clients.</p>
<p>The code to embed images is working perfectly and I don't believe there is any problem with it but I've included some quick sample code below just in case:</p>
<pre><code>MailMessage mail = new MailMessage();
mail.To.Add("123@myemail.com");
mail.From = new MailAddress("456@ myemail.com");
mail.Subject = "Image sample - fails in mobile clients";
string Body = "Sample email text<img src=\"cid:imageId\" />";
AlternateView htmlView = AlternateView.CreateAlternateViewFromString(Body, null, "text/html");
LinkedResource lr = new LinkedResource("myImage.jpg", "image/jpeg");
lr.ContentId = "imageId";
htmlView.LinkedResources.Add(lr);
mail.AlternateViews.Add(htmlView);
SmtpClient smtpClient = new SmtpClient();
smtpClient.Send(mail);
</code></pre>
<p>Does anyone know why embedded images are not displayed on mobile clients? Better yet, how can I get the images to display correctly?</p>
http://stackoverflow.com/questions/37640/best-gui-tool-for-documenting-a-sql-server-db1Best GUI tool for documenting a SQL Server DBAlison2008-09-01T09:04:42Z2009-10-07T05:44:11Z
<p>What tool(s) do you use to generate documentation for a database (preferably into a .chm help file)?</p>
http://stackoverflow.com/questions/103630/jquery-menu-and-asp-net-sitemap4jQuery Menu and ASP.Net SitemapAlison2008-09-19T16:49:27Z2009-09-16T10:06:00Z
<p>Does anyone know if it is possible to use an asp.net web.sitemap with a jQuery <a href="http://users.tpg.com.au/j_birch/plugins/superfish/" rel="nofollow">Superfish</a> menu? </p>
<p>If not, are there any standards based browser agnostic plugins available that work with the web.sitemap file?</p>
http://stackoverflow.com/questions/1428770/fastest-way-to-populate-dropdownlist-list-control/1429071#14290710Answer by Alison for Fastest way to populate dropdownlist & list controlAlison2009-09-15T19:06:53Z2009-09-15T19:06:53Z<p>Build the list & dropdown control on the client with AJAX.</p>
<ol>
<li>Load data into cached memory on application start</li>
<li>Client makes a JSON request for data to load into the controls</li>
<li>JSON object is created on the server with data taken from the cache and sent back to the client</li>
<li>On the client, iterate over the returned JSON object and and add DOM elements to the list & dropdown control</li>
</ol>
http://stackoverflow.com/questions/1427518/gridview-disappears-when-page-is-refreshed/1427591#14275910Answer by Alison for Gridview disappears when page is refreshedAlison2009-09-15T14:36:21Z2009-09-15T17:08:35Z<p>There are a lot of different ways to handle this situation. A possible solution for you is to store the user's query results in a session variable. On page load, check to see if query results exist. If so, populated the GridView from the session variable. If not, hit the database for the results and add the result to the session variable.</p>
<p>I haven't tested it but something like this should work. :</p>
<pre><code>private void BuildGridView1()
{
DataSet ds;
if (Session["myDataset"] == null)
{
ds = new Select(District.Schema.TableName + ".*")
.From(District.Schema)
.Where(District.Columns.Zip).IsEqualTo(this.txtZip.Text)
.OrderAsc(District.Columns.Zip)
.ExecuteDataSet();
Session["myDataset"] = ds;
}
else
{
ds = (DataSet)Session["myDataSet"];
}
GridView1.DataSource = ds;
}
</code></pre>
http://stackoverflow.com/questions/1332916/converting-vb-net-to-c/1336575#13365751Answer by Alison for Converting vb.net to c#Alison2009-08-26T18:16:00Z2009-08-26T18:16:00Z<p>Telerik has a great <a href="http://converter.telerik.com/" rel="nofollow">free online converter</a></p>
<p>The following was produced by their converter:</p>
<pre><code>using Microsoft.Win32;
using System.Runtime.InteropServices;
public class Kiosk : IDisposable
{
#region "IDisposable"
//' Implementing IDisposable since it might be possible for
//' someone to forget to cause the unhook to occur. I didn''t really
//' see any problems with this in testing, but since the SDK says
//' you should do it, then here''s a way to make sure it will happen.
public void IDisposable.Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (disposing) {
//' Free other state (managed objects).
}
if (m_hookHandle != 0) {
UnhookWindowsHookEx(m_hookHandle);
m_hookHandle = 0;
}
if (m_taskManagerValue > -1) {
EnableTaskManager();
}
}
protected override void Finalize()
{
Dispose(false);
}
#endregion
static void main()
{
}
private delegate int LowLevelHookDelegate(int code, int wParam, ref KeyboardLowLevelHookStruct lParam);
private const int Hc_Action = 0;
private const int WindowsHookKeyboardLowLevel = 13;
private const int LowLevelKeyboardHfAltDown = 0x20;
private enum WindowsMessage
{
KeyDown = 0x100,
KeyUp = 0x101,
SystemKeyDown = 0x104,
SystemKeyUp = 0x105
}
private enum Vk
{
Tab = 0x9,
Escape = 0x1b,
Shift = 0x10,
Control = 0x11,
Menu = 0x12,
//' ALT key.
Alt = 0x12,
Pause = 0x13,
LeftWindows = 0x5b,
//' Left Windows key (Microsoft® Natural® keyboard).
RightWindows = 0x5c,
//' Right Windows key (Natural keyboard).
Applications = 0x5d
//' Applications key (Natural keyboard).
}
private struct KeyboardLowLevelHookStruct
{
public int VirtualKeyCode;
public int ScanCode;
public int Flags;
public int Time;
public UInt32 ExtraInfo;
}
// ERROR: Not supported in C#: DeclareDeclaration
// ERROR: Not supported in C#: DeclareDeclaration
// ERROR: Not supported in C#: DeclareDeclaration
// ERROR: Not supported in C#: DeclareDeclaration
private int m_hookHandle;
private int LowLevelHook(int code, int wParam, ref KeyboardLowLevelHookStruct lParam)
{
if (code == Hc_Action) {
if ((wParam == WindowsMessage.KeyDown) || (wParam == WindowsMessage.SystemKeyDown) || (wParam == WindowsMessage.KeyUp) || (wParam == WindowsMessage.SystemKeyUp)) {
//'Dim alt As Boolean = (GetAsyncKeyState(Vk.Alt) And &H8000) = &H8000
//'Dim shift As Boolean = (GetAsyncKeyState(Vk.Shift) And &H8000) = &H8000
bool control = (GetAsyncKeyState(Vk.Control) & 0x8000) == 0x8000;
bool suppress;
//' CTRL+ESC
if (control && lParam.VirtualKeyCode == Vk.Escape) {
suppress = true;
}
//' ALT+TAB
if ((lParam.Flags & LowLevelKeyboardHfAltDown) == LowLevelKeyboardHfAltDown && lParam.VirtualKeyCode == Vk.Tab) {
suppress = true;
}
//' ALT+ESC
if ((lParam.Flags & LowLevelKeyboardHfAltDown) == LowLevelKeyboardHfAltDown && lParam.VirtualKeyCode == Vk.Escape) {
suppress = true;
}
//' Left Windows button.
if (lParam.VirtualKeyCode == Vk.LeftWindows) {
suppress = true;
MessageBox.Show("Pressed Left windows key");
}
//' Right Windows button.
if (lParam.VirtualKeyCode == Vk.RightWindows) {
suppress = true;
MessageBox.Show("Pressed Right windows key");
}
//' Applications button.
if (lParam.VirtualKeyCode == Vk.Applications) {
suppress = true;
}
if (suppress) {
return 1;
}
}
return CallNextHookEx(m_hookHandle, code, wParam, lParam);
}
}
public void Disable()
{
if (m_hookHandle == 0) {
m_hookHandle = SetWindowsHookEx(WindowsHookKeyboardLowLevel, LowLevelHook, Marshal.GetHINSTANCE(System.Reflection.Assembly.GetExecutingAssembly.GetModules()(0)).ToInt32, 0);
}
}
public void Enable()
{
if (m_hookHandle != 0) {
UnhookWindowsHookEx(m_hookHandle);
m_hookHandle = 0;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1336488/asp-net-validation-grouping/1336496#13364960Answer by Alison for ASP.Net Validation groupingAlison2009-08-26T18:02:23Z2009-08-26T18:02:23Z<p>Use <a href="http://msdn.microsoft.com/en-us/library/ms227424.aspx" rel="nofollow">validation groups</a></p>
http://stackoverflow.com/questions/1312478/where-can-i-find-the-silverlight-standard-loading-animation/1325338#13253381Answer by Alison for Where can I find the Silverlight standard loading animation?Alison2009-08-24T23:37:07Z2009-08-25T00:12:45Z<p>I think this is exactly what you're looking for (ie: the swirly blue balls...hmmm, that's doesn't sound very good either): </p>
<p>First, download the images from <a href="http://www.filehosting.org/file/details/54451/assets.zip" rel="nofollow">this link</a>. Add the "assets" folder to your "ClientBin" folder.</p>
<p>Next, add the following canvas to your XAML</p>
<pre><code><Canvas x:Name="progressIndicator" Opacity="1" Canvas.Left="480" Canvas.Top="230" Width="50" Height="30">
<Canvas.Resources>
<Storyboard x:Name="loadingIndicator" Duration="00:00:0.03" Completed="loadingIndicator_Completed">
</Storyboard>
</Canvas.Resources>
</Canvas>
</code></pre>
<p>Finally, add the following to your XAML code behind</p>
<pre><code> const int TotalImages = 101;
int CurrentImage = 0;
public MainPage()
{
InitializeComponent();
PreLoadImages();
this.loadingIndicator.Begin();
}
public void PreLoadImages()
{
Image img = new Image();
img.Name = "ll_0";
img.Opacity = 1;
img.Source = new System.Windows.Media.Imaging.BitmapImage(new Uri("/assets/images/loader_loop_00000.png", UriKind.Relative));
progressIndicator.Children.Add(img);
for(int i = 1;i <= TotalImages;i++) {
img = new Image();
img.Name = "ll_" + i.ToString();
img.Opacity = 0;
img.Source = new System.Windows.Media.Imaging.BitmapImage(new Uri("/assets/images/loader_loop_00" + i.ToString("000") + ".png", UriKind.Relative));
img.Width = 30;
img.Height = 30;
progressIndicator.Children.Add(img);
}
}
private void loadingIndicator_Completed(object sender, EventArgs e)
{
Image currentImage = (Image)FindName("ll_" + CurrentImage.ToString());
currentImage.Opacity = 0;
CurrentImage++;
if (CurrentImage >= TotalImages) {
CurrentImage = 0;
}
currentImage = (Image)FindName("ll_" + CurrentImage.ToString());
currentImage.Opacity = 1;
loadingIndicator.Begin();
}
</code></pre>
http://stackoverflow.com/questions/1153753/jquery-ajax-force-cache-invalidation0jQuery.ajax - force cache invalidationAlison2009-07-20T14:00:20Z2009-07-20T14:05:25Z
<p>I am using jQuery.ajax (<a href="http://docs.jquery.com/Ajax/jQuery.ajax" rel="nofollow">http://docs.jquery.com/Ajax/jQuery.ajax</a>) to inject the contents of a different web page into the current page. Think of this as a "preview" window. jQuery has an optional cache argument which works great at loading the contents from the cache instead of requesting the same page again. </p>
<p>My problem is that the contents that are being injected can be edited from a different location. When this happens, I want to invalidate the cache on the browser so that the next time the content of the page is requested, jQuery will request the page instead of using the cache. I could set the cache argument to false but then no content will be ever cached. I need content to be cached and only re-requested when the source content has been changed.</p>
<p>How can I invalidate the currently cached web page?</p>
http://stackoverflow.com/questions/911129/how-to-transfer-form-values-from-one-asp-net-page-to-other/911147#9111474Answer by Alison for How to transfer Form values from one asp.net page to other?Alison2009-05-26T14:57:45Z2009-05-26T14:57:45Z<p>Take a look at: <a href="http://msdn.microsoft.com/en-us/library/ms178139.aspx" rel="nofollow">Cross page posting</a></p>
http://stackoverflow.com/questions/697558/access-2007-how-can-i-get-the-onclick-event-of-a-treeview-checkbox1Access 2007: How can I get the onclick event of a Treeview checkbox?Alison2009-03-30T14:56:25Z2009-03-30T15:07:38Z
<p>I have an Access 2007 form that is using an ActiveX Treeview control with checkboxes enabled. I want to run some custom code after a checkbox has been clicked but I can't seem to find any sort of "onclick" or "onchecked" event.</p>
<p>Does anyone know how to do this in Access 2007?</p>
http://stackoverflow.com/questions/697558/access-2007-how-can-i-get-the-onclick-event-of-a-treeview-checkbox/697610#6976101Answer by Alison for Access 2007: How can I get the onclick event of a Treeview checkbox?Alison2009-03-30T15:07:38Z2009-03-30T15:07:38Z<p>The answer is pretty simple but definitely not well documented.</p>
<p>Manually add the NodeCheck event to your module. The key here is that the Properties window won't help you. You need to enter the code by hand.</p>
<pre><code>Private Sub tv1_NodeCheck(ByVal Node As Object)
'VBA goes here
End Sub
</code></pre>
http://stackoverflow.com/questions/683450/css-image-caching1CSS Image CachingAlison2009-03-25T21:05:28Z2009-03-25T21:17:45Z
<p>In terms of client-side image caching, is there a difference between the following:</p>
<pre><code>**Option #1**
<div style="background:url('myimage.jpg');display:none;"></div>
</code></pre>
<p>and</p>
<pre><code>**Option #2**
<div id="myimage"></div>
style.css
#myimage {
background:url('myimage.jpg');
display:none;
}
</code></pre>
<p>EDIT: I'm not sure if it matters but the above DIVs are first loaded on another page with style="display:none;" </p>
http://stackoverflow.com/questions/639120/how-to-zero-fill-a-number-inside-of-an-excel-cell/639158#6391584Answer by Alison for How to zero fill a number inside of an Excel cellAlison2009-03-12T15:25:56Z2009-03-12T15:25:56Z<p>=TEXT(A1,"0000000000")</p>
http://stackoverflow.com/questions/634367/smtp-configuration/634388#6343883Answer by Alison for SMTP configurationAlison2009-03-11T12:53:40Z2009-03-11T12:53:40Z<p>An SMTP Server is not included with Vista.</p>
<p><a href="http://weblogs.asp.net/steveschofield/archive/2006/12/19/iis7-post-23-vista-and-smtp-server-where-is-it.aspx" rel="nofollow">http://weblogs.asp.net/steveschofield/archive/2006/12/19/iis7-post-23-vista-and-smtp-server-where-is-it.aspx</a></p>
http://stackoverflow.com/questions/133106/how-secure-is-basic-forms-authentication-in-asp-net4How secure is basic forms authentication in asp.net?Alison2008-09-25T12:46:39Z2009-03-06T00:19:50Z
<p>Imagine that you have a simple site with only 2 pages: login.aspx and secret.aspx. Your site is secured using nothing but ASP.net forms authentication and an ASP.net Login server control on login.aspx. The details are as follows:</p>
<ul>
<li>The site is configured to use the SqlMembershipProvider</li>
<li>The site denies all anonymous users</li>
<li>Cookies are disabled</li>
</ul>
<p>The are obviously many things to consider regarding security but I am more interested in the zero code out of box experience that comes with the .net framework.</p>
<p>If, for the sake of this question, the only attack points are the username/password textboxes in login.aspx, can a hacker inject code that will allow them to gain access to our secret.aspx page? </p>
<p>How secure is the zero code out-of-box experience that Microsoft provides?</p>
http://stackoverflow.com/questions/37519/add-xml-comments-to-class-properties-generated-by-the-linq-to-sql-designer1Add XML Comments to class properties generated by the LINQ to SQL designerAlison2008-09-01T06:15:44Z2008-12-17T20:57:43Z
<p>I used the LINQ to SQL designer in Visual Studio to create an object model of a database. Now, I want to add XML comments to each generated property but I can't figure out how to do it without erasing the properties the next time the dbml file is refreshed.</p>
<p>How can this be done?</p>
http://stackoverflow.com/questions/61399/enhancing-the-web-user-experience-for-the-vision-impaired4Enhancing the web user experience for the vision impairedAlison2008-09-14T15:18:32Z2008-11-19T03:27:36Z
<p>I was listening to a <a href="http://www.hanselminutes.com/default.aspx?showID=143" rel="nofollow">recent episode of Hanselminutes</a> where Scott Hanselman was discussing accessibility in web applications and it got me thinking about accessibility in my own applications.</p>
<p>We all understand the importance of semantic markup in our web applications as it relates to accessibility but what about other simple enhancements that can be made to improve the user experience for disabled users?</p>
<p>In the episode, there were a number of times where I slapped my forehead and said "Of course! Why haven't I done that?" In particular, Scott talked about a website that placed a hidden link at the top of a web page that said "skip to main content". The link will only be visible to people using screen readers and it allows their screen reader to jump past menus and other secondary content. It's such an obvious improvement yet it's easy not to think of it.</p>
<p>There is more to accessibility and the overall user experience than simply creating valid XHTML and calling it a day.</p>
<p>What are some of your simple tricks for improving the user experience for the vision impaired?</p>
http://stackoverflow.com/questions/1931136/changing-radcombobox-font-color-when-disabled-in-asp-netComment by Alison on Changing RadCombobox Font Color when Disabled in ASP.NETAlison2009-12-18T22:57:19Z2009-12-18T22:57:19ZHow are you disabling the radcombobox? On the server or on the client?http://stackoverflow.com/questions/1902374/jquery-will-performance-and-download-file-size-improve-etcComment by Alison on JQuery: Will performance and download file size improve, etc...Alison2009-12-14T18:11:06Z2009-12-14T18:11:06ZThis question is taking up space that could be better utilized by talking about our favorite programming music or which desk is best for alleviating eye strain. I'm sure no one is interested in jQuery performance enhancements or compatibility issues.
Yes, the question has no definite answer and is certainly subject to change but if we close this answer then all questions about alpha/beta releases of any product should be closed.
Whoever voted to close this should think long and hard about their actions and whether or not this was the best way to handle the situation.http://stackoverflow.com/questions/1866235/best-practice-for-implementing-nested-gridview-up-to-4-levelsComment by Alison on Best practice for implementing Nested GridView up to 4 levels?Alison2009-12-08T14:57:01Z2009-12-08T14:57:01ZWill there always be exactly 4 levels or will some have less?http://stackoverflow.com/questions/1741612/show-hide-div-using-codebehind/1741651#1741651Comment by Alison on Show hide div using codebehindAlison2009-11-16T12:08:29Z2009-11-16T12:08:29ZIf the div receives the runat="server" attribute and its visibility is set to false then it will not be rendered on the page and not accessible by JavaScript (which looks like it might be necessary).
RegisterStartupScript is definitely worth a shot.http://stackoverflow.com/questions/1646007/how-do-i-set-a-table-background-programmatically-while-running-an-asp-net-pageComment by Alison on How do I set a table background programmatically while running an asp.net page?Alison2009-10-30T12:26:51Z2009-10-30T12:26:51ZCan you show us the code in rdoStatus_OnSelectionChanged?http://stackoverflow.com/questions/1520067/embedded-images-in-html-email-not-displaying-on-mobile-phones/1521708#1521708Comment by Alison on Embedded images in HTML email not displaying on mobile phonesAlison2009-10-05T19:52:56Z2009-10-05T19:52:56ZNo, that's not the case for embedded images. The images arrive at the client with the images already attached. Users will not be requested by their clients to download the images. That's one of the benefits of embedding. Everything works beautifully and just how you would want it to and spam protection doesn't come into play.http://stackoverflow.com/questions/736155/trim-string-to-length-ignoring-html/738167#738167Comment by Alison on Trim string to length ignoring HTML. Alison2009-09-21T21:53:09Z2009-09-21T21:53:09ZWhat happens if you have a table as part of your html? Your code wouldn't trim the string in the middle of a <td> tag but it might trim the string before the <td> tag is closed.http://stackoverflow.com/questions/1427518/gridview-disappears-when-page-is-refreshed/1427591#1427591Comment by Alison on Gridview disappears when page is refreshedAlison2009-09-15T18:19:00Z2009-09-15T18:19:00ZIE8 maintains sessions across tabs (<a href="http://blogs.msdn.com/ie/archive/2008/07/28/ie8-and-reliability.aspx" rel="nofollow">blogs.msdn.com/ie/archive/…</a>). I think IE7 does as well as recent Firefox releases.
If you're still concerned about using sessions, you can always store the dataset inside a cache variable and play with the expiry times. The code is similar with some small changes. It's not ideal but it would likely meet your needs. http://stackoverflow.com/questions/1427518/gridview-disappears-when-page-is-refreshedComment by Alison on Gridview disappears when page is refreshedAlison2009-09-15T16:47:41Z2009-09-15T16:47:41ZHow are you binding your datasource to the GridView?http://stackoverflow.com/questions/1153753/jquery-ajax-force-cache-invalidation/1153780#1153780Comment by Alison on jQuery.ajax - force cache invalidationAlison2009-07-20T14:10:05Z2009-07-20T14:10:05ZDoes this mean that there is no way to access the list of cached items and simply remove an item from the list? Instead of checking to see if content has changed, when content is edited, I could just remove the page entirely from the cache...if it were possible.http://stackoverflow.com/questions/683450/css-image-caching/683475#683475Comment by Alison on CSS Image CachingAlison2009-03-25T21:13:39Z2009-03-25T21:13:39ZWhich browsers don't cache graphics in hidden elements?http://stackoverflow.com/questions/103630/jquery-menu-and-asp-net-sitemap/647656#647656Comment by Alison on jQuery Menu and ASP.Net SitemapAlison2009-03-15T15:44:14Z2009-03-15T15:44:14ZFantastic! I've been searching for an answer since first asking this question.http://stackoverflow.com/questions/110889/how-do-i-request-further-information-on-an-answer-on-stackoverflow/110891#110891Comment by Alison on How do I request further information on an answer on Stackoverflow?Alison2008-09-21T13:22:36Z2008-09-21T13:22:36ZHow do we know if anyone has commented on the comment? Is there a notification system in place?http://stackoverflow.com/questions/92698/combine-rows-in-access-2007/93370#93370Comment by Alison on Combine rows in Access 2007Alison2008-09-19T16:53:40Z2008-09-19T16:53:40ZPERSON is the field name in the example while the table is PersonTable.http://stackoverflow.com/questions/61399/enhancing-the-web-user-experience-for-the-vision-impaired/61430#61430Comment by Alison on Enhancing the web user experience for the vision impairedAlison2008-09-14T16:04:39Z2008-09-14T16:04:39ZGood points. I imagine that a lot of existing websites may not be able to easily re-structure their content placement.