hi, any one plz give the guidence how to enable the digital signature in the document library or list? Thanks,
megivimal
Posts
-
Digital Signature -
How to deploy .dwp filehi, I have one doubt, how to deploy .dwp file to sharepoint. send me the syntax for the work. If i deploy the .wpf using "stsadm" command then .dwp?
-
Podcast in sharePointI'm new to SharePoint, Somebody can help me create a Podcast in SharePoint (or) MOSS2007 Is it possible to do. Thanks...
-
Login userhi, i'm new to Sharepoint, from last week only i worked this platform. i have one assignment.. "how to identify which user is logged in to the site?" and display the logged user name and e-mail ID . I dn't know the code any one help me.... I'm using "InfoPath Concept".... for this task. Thanks...
-
Avoid Multiple Space Elimination in ASP.NET GridView Control [modified]hi, This code is working for me. but the grid cells take too many height and width (Cellspacing&Cellpadding). how can i reduce the space between teh cells content. <asp:GridView ID="grdResult" runat="server" AutoGenerateColumns="False" OnRowDataBound="grdResult_RowDataBound" CellPadding="0" CellSpacing="0"> <Columns> <asp:TemplateField HeaderText="PharmacyID" ConvertEmptyStringToNull="false"> <ItemTemplate> <pre> <asp:LinkButton ID="lnkPatientID" runat="server" Text='<%#Eval("PharmacyID") %>' CommandName="PharmacyName" CommandArgument='<%#Eval("PharmacyID" )%>'></asp:LinkButton></pre> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="NABP" ConvertEmptyStringToNull="false"> <ItemTemplate> <pre><asp:LinkButton ID="lnkNABP" runat="server" Text='<%#Eval("NABP") %>' CommandName="PharmacyName" CommandArgument='<%#Eval("PharmacyID") %>'></asp:LinkButton></pre> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Storename" ConvertEmptyStringToNull="false"> <ItemTemplate> <pre><asp:LinkButton ID="lnkStorename" runat="server" Text='<%#Eval("Storename")%>' CommandArgument='<%#Eval("PharmacyID") %>' CommandName="PharmacyName"></asp:LinkButton></pre> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Address1" ConvertEmptyStringToNull="false"> <ItemTemplate> <pre><asp:LinkButton ID="lnkAddress1" runat="server" Text='<%#Eval("Address1")%>' CommandName="PharmacyName" CommandArgument='<%#Eval("PharmacyID") %>
-
Ajax tabshi, Before saving the database u maintain that values to session. In that session u passed to 2nd tab gridview values. It's working .....
-
Onkeydown event in javascript not working in firefox3.0hi, The following code is not working in firefox3.0 but it's working fine in firefox2.0 what's the prb? any one plz help me..... <asp:TextBox ID="txtBirthdate" CssClass="date_box" runat="server" TabIndex="3" onkeydown="OnTextChange('ctl00$ContentPlaceHolder1$btnSubmit');" onchange="OnTextChange('ctl00$ContentPlaceHolder1$btnSubmit');"></asp:TextBox> <asp:Button ID="btnSubmit" Enabled="false" runat="server" CssClass="button" Text="Save" TabIndex="16" ValidationGroup="ValPatient_Detail" OnClick="btnSubmit_Click" /> function OnTextChange(Button) { if(navigator.appName!="Netscape") { document.getElementById(Button).disabled=false; } else { document.getElementById(Button).disabled=false; } } Button-->> value is btnSubmit
-
TextBox onTextChanged EventIt's not working...
-
TextBox onTextChanged EventWhen i change the text on the "Text box" to fire the javascript code, Like, Button id :- onchangetextbox event:- onchange="onButton('btnSave')"> My .js code:- var button; function onButton(ButtonValue) { button=document.getElementById('ButtonValue'); } the variable "button" returns the null value. Plz any one help me... how to solve the proble.
-
Making controls visible using javascripthi,, But document.getElementbyId(id) -->> returns the null value. how it will work.. Plz help me.....
-
TextBox onTextChanged Eventhi, any one help me,,, When i change the textbox content, it fire the .js(Script file) and set the button visible propery as true. .js as a separate script file. Thanks.
-
How to add multiple rows on the datatable.hi,, I'm new in .Net, any one help me... how to add multiple rows on the single datatable. without using SQL-Server. I need to add the multiple textbox values to the Datatable. Thanks.
-
How to pass values from textboxes on one page to a "another page"I got the code Mr.Manas Bhardwaj ... Thanks.
-
How to pass values from textboxes on one page to a "another page"Passing the session value to datatable object. DataTable dtSession=new DataTable(); dtSession ==> Datatable object.
-
How to pass values from textboxes on one page to a "another page"hi, any one help me, How to pass values from textboxes on one page to a "another page" using session. I have the follwing code but it shows an error msg. public string PassingSession ; Session["strPharmacyId"] = txtPharmacyId.Text.Trim(); Session["strStoreName"] = txtStoreName.Text.Trim(); Session["strAddress1"] = txtAddress.Text.Trim(); Session["strCity"] = txtCity.Text.Trim(); Session["strState"] = txtState.Text.Trim(); PassingSession = PassingSession + Session["strPharmacyId"]; PassingSession = PassingSession + Session["strStoreName"]; PassingSession = PassingSession + Session["strAddress1"]; PassingSession = PassingSession + Session["strCity"]; PassingSession = PassingSession + Session["strState"]; Session["Pharmacy"] = PassingSession; dtSession = (DataTable)Session["Pharmacy"]; msg: "can't convert string to datatable";
-
Gridview inside ListView ControlThanks Zafar. It's working fine. Thanks a lotttt.
-
Nested ListViewhi, any one help me, how to bind nested listview using LINQ? Thanks.
-
Gridview inside ListView ControlPlz chk the below link. http://mattberseth.com/blog/2008/01/building_a_grouping_grid_with.html I need like this. Thanks.
-
Gridview inside ListView ControlIt's working fine. Thanks. I need to expand and collapse the ID (Department-ID) the department details will be display in gridview or (listview). Plz help me.... Thanks.
-
Gridview inside ListView ControlThanks, That's ok. If i bind the gridview to inside the listview control how it will work? It's like expand and collaspe button modal.