Search

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

Matching Posts

  • .swf binary file does not display for IE7 only.

    So I'm racking my brain here. I know IE7 has some new activeX security features which I believe may be the culprit, but here's the thing. I have a file that retrieves and binary data from a SQL Server DB and does a BinaryWrite to display that data. I have tested this file and it displays the .swf file correctly in FireFox 2.0.0.9, IE6, Safari 3.0.3. However with IE7, I simply get a blank screen. Is there something I can do to tweak the code below to allow .swf files to display in IE7 instead
    Posted to Web Forms (Forum) by jmaag on 11/6/2007
  • Re: How to save the value of FCKeditor to database?

    I've reverted to using ValidateRequest="False" method for a while now. Has anyone ever come across a way to restrict this to a single field instead of an entire page? Seems like that would be a far more interesting and beneficial method of practice.
    Posted to Component Discussions (Forum) by jmaag on 7/25/2007
  • Re: Solution: Show Header/Footer of Gridview with Empty Data Source

    I've seen a few requests about the SkinID not applying to this grid. Here's the solution. Basically, when you create a custom control, the tag no longer is asp:GridView. Because of this, the asp:GridView skins won't apply to our custom grid. We need to create a skin specific to our new control. Below is a sample solution. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Test.aspx.cs" Inherits="Test" Title="Untitled Page" StylesheetTheme
    Posted to Tips & Tricks (Forum) by jmaag on 6/1/2007
  • Re: ASP.NET AJAX Autocomplete with VB

    mattock: hi all I had the same problem with the posted code how ever have solved it. You basically need to add the following to the page: < asp:ScriptManager ID= "ScriptManager1" runat= "server" > < Services > < asp:ServiceReference Path= "AutoComplete.asmx" /> </ Services > </ asp:ScriptManager > I also changed the SqlConnection slightly as the method in the code above did not work: Dim SqlConnection1 As SqlConnection = New SqlConnection(System.Configuration.ConfigurationManager
    Posted to ASP.NET AJAX UI (Forum) by jmaag on 5/10/2007
  • Re: how to write to SQL

    The insert parameter needs to hook into the textbox control. Look at the modification below. < asp : TextBox ID ="emailBox" runat ="server"></ asp : TextBox >< br > < br > < asp : Button ID ="Button1" runat ="server" Text ="Submit" OnClick ="Button1_Click" /> < asp : SqlDataSource ID ="SqlDataSource1" runat ="server" ConnectionString =" <%$ ConnectionStrings:customerresponseConnectionString %> " DeleteCommand ="DELETE FROM [response] WHERE = @email" InsertCommand
  • Need an opinion: Access vs. SQL Server Express or another alternative?

    I inherited this website from a previous developer that uses an Access DB as a backend. Ugh. Apparently, he was extremely limited in what databases he could use. The website is filled with problems related to connecting to this database, which is no surprise. Most of them are related to permissions to the database file, multiple user access, etc. I am thinking about moving this to a SQL Server Express DB and upgrading the site to the 2.0 framework. Most of my experience is in SQL Server, but since
  • Re: ModalPopupExtender TargetControlID event

    I modified the example here: http://forums.asp.net/thread/1510045.aspx . <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Test2.aspx.cs" Inherits="Test2" %> < !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns= "http://www.w3.org/1999/xhtml" > < head runat= "server" > < title >Untitled Page</ title > </ head > < body > < script type= "text/javascript" > function
    Posted to ASP.NET AJAX Control Toolkit (Forum) by jmaag on 4/4/2007
  • Re: ModalPopupExtender with buttons?

    I was able to process the progress with an updatepanel and updateprogress, using the modalpopup. Maybe this may help you: http://forums.asp.net/thread/1651650.aspx
    Posted to ASP.NET AJAX Control Toolkit (Forum) by jmaag on 4/4/2007
  • Re: ModalPopupExtender with buttons?

    You could actually use the ConfirmButtonExtender to ask the user whether they would like to continue or not before actually submitting the data. That would fulfill what your asking. < asp:ImageButton ID= "undoBtn" runat= "server" AlternateText= "Undo Changes" CommandName= "Cancel" ImageUrl= "~/images/undoBtn.gif" ToolTip= "Undo Changes" /> < ajaxToolkit:ConfirmButtonExtender ID= "undoCBE" runat= "server" TargetControlID= "undoBtn" ConfirmText= "Are you sure you want to undo all changes since
    Posted to ASP.NET AJAX Control Toolkit (Forum) by jmaag on 4/4/2007
  • ModalPopupExtender TargetControlID event

    I'm having a problem with getting the TargetControl to fire it's server side event with the ModalPopupExtender. I've searched through the forums and have tried anything I could think of. Below is my test code. Am I missing something here or am I just noob. The desired functionality is to prevent users from making changes to the page, while it updates. Then when finished, it will return to it's regular state. Thanks in Advance :) < asp:ScriptManager ID= "ScriptManager1" runat= "server" /> <
    Posted to ASP.NET AJAX Control Toolkit (Forum) by jmaag on 4/4/2007
Page 1 of 3 (22 items) 1 2 3 Next >