Hi.
How can I diplay random 5 photos in the main page of my site? These photos could be users' photos..
Cheers!!
View Complete Post
Sir,
Please guide
Hi,
I'm using following JS code to display input hint box besides the textbox whenever that asp.net textbox receives focus.
I'm doing this for a registration form and all of the textboxes are inside the asp.net create user wizard control.
<script type="text/javascript"> function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { oldonload(); func(); } } } function prepareInputsForHints() { var inputs = document.getElementsByTagName("TextBox"); for (var i=0; i<inputs.length; i++){ // test to see if the hint span exists first if (inputs[i].parentNode.getElementsByTagName("span")[0]) { // the span exists! on focus, show the hint inputs[i].onfocus = function () { this.parentNode.getElementsByTagName("span")[0].style.display = "inline"; } // when the cursor moves away from the field, hide the hint inputs[i].onblur = function () { this.parentNode.getElementsByTagName("span")[0].style.display = "none"; } } } addLoadEvent(prepareInputsForHints); </script>
span.
Hi guys,
How can I test what my xsl spits out in the browser, rather than just viewing the xsl itself?
thanks
I my application i have generated dynamic rows that contains some textbox values, i need to take those values and display in
reports. I am storing that dynamically added values in another table. please help me.
See what the Interactive Visual Media Group at Microsoft Research is up to these days.
Richard Szeliski
MSDN Magazine July 2007
Paul DiLascia
MSDN Magazine October 2001
Matt Pietrek
MSDN Magazine March 2001
Robert Hess
MSDN Magazine May 2000
I have tried to use a GridView and DataGrid and the binding works but there isn't a grid that displays. Not even the header row.
The web page
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="FCB.CBOSYS.NoMastersWeb.NoMasters._Default" %> <%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %> <!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 id="Head1" runat="server"> <link href="CSS/Main.css" rel="stylesheet" type="text/css" /> <title>NoMasters Auditor</title> </head> <body> <form id="form1" runat="server"> <cc1:ToolkitScriptManager ID="smImageViewer" runat="server"> </cc1:ToolkitScriptManager > <asp:UpdatePanel ID="pnlUpdate" runat="server"> <ContentTemplate> <asp:Panel ID="pnl
I have a formview1 with a dropdownlist1 in the insert template. Based on the value of that dropdownlist I would like to display a second formview on the same page in insert mode so that I can write data to two different tables.
How can I accomplish this?
Is this the best way to do it?
thanks.
I'm a big fan of the Colleague Tracker web part in MOSS 2007 My Sites, especially the option to show 'Membership Changes'. This is often useful in highlighting that a colleague has been added to a certain AD group.
We now want to hide the membership of certain AD groups from the colleague tracker. For example, if an AD group called 'Project X' is created, we don't want membership of the group broadcast throughout the My Sites where colleagues are tracking colleagues.
My first thought was that we could use AD to 'deny read' on the 'Project X' AD group to all SharePoint related service accounts. This does not appear to have worked, although perhaps the configuration is more complex? The best approach would seem to be to prevent the group membership data ever being imported from AD to the SSP, hence my 'deny read' approach.
Has anyone successfully implemented this, or does anyone have any better ideas?
Thanks
Hall of Fame Twitter Terms of Service Privacy Policy Contact Us Archives Tell A Friend