Click here to Skip to main content
16,022,536 members

Comments by Member 11307750 (Top 6 by date)

Member 11307750 25-Apr-24 6:42am View    
It did not work
Member 11307750 10-Jun-21 20:16pm View    
Deleted
<asp:hiddenfield id="hfId" runat="server">
<asp:gridview id="gvDetails" runat="server" autogeneratecolumns="False"
="" backcolor="White" bordercolor="#3366CC" borderstyle="None" font-names="Century Gothic" font-size="XX-Small" datakeynames="id" width="100%" style="margin-bottom: 0px" cssclass="grid">
<columns>
<asp:templatefield>
<itemtemplate>
<asp:checkbox id="chkSelect" runat="server">


<asp:boundfield datafield="id" headertext="id">
<asp:boundfield datafield="pid" headertext="pid">
<asp:boundfield datafield="description" headertext="Description">
<asp:boundfield datafield="country" headertext="country">
<asp:boundfield datafield="pack" headertext="pack">
<asp:boundfield datafield="customer" headertext="customer">
<asp:boundfield datafield="jobnumber" headertext="jobnumber">
<asp:boundfield datafield="artworkdate" headertext="artworkdate">
<asp:boundfield datafield="reprodate" headertext="reprodate">
<asp:boundfield datafield="artworknumber" headertext="artworknumber">
<asp:boundfield datafield="templateno" headertext="templateno">
<asp:templatefield>
<itemtemplate>

<asp:button text="View" id="Inkview" runat="server" onclick="Inkview_Click" forecolor="white" backcolor="#FF6600">



<asp:templatefield>
<itemtemplate>
<asp:button text="Edit" id="lnkView1" runat="server" onclick="Inkview_Click1" forecolor="white" backcolor="#FF6600">




<headerstyle backcolor="green" font-bold="True" forecolor="#CCCCFF">
<pagerstyle backcolor="#99CCCC" forecolor="#003399" horizontalalign="Left">
<rowstyle backcolor="White" forecolor="#003399">
<selectedrowstyle backcolor="#009999" font-bold="True" forecolor="#CCFF99">
Member 11307750 11-Jan-21 10:57am View    
why not help with the code
Member 11307750 29-Jun-18 16:12pm View    
1.Delete.asp



<title>Delete fingerprint


<!-- BioPlugin ActiveX control to capture finger data -->

<OBJECT ID="BioPlugInActX" WIDTH=0 HEIGHT=0 CLASSID="CLSID:05E8280C-D45A-494F-AE42-840A40444AFF">
<param name="_Version" value="65536">
<param name="_ExtentX" value="2646">
<param name="_ExtentY" value="2646">
<param name="_StockProps" value="0">







Delete Fingerprint




Registration ID
Member 11307750 7-Mar-16 17:47pm View    
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Web.Script.Serialization;
using Newtonsoft.Json;
using System.Net.Http;


public partial class My_Default2 : System.Web.UI.Page
{



public class Transaction
{
public Long Amount {get; set;}
public String CardNumber {get; set;}
public String MerchantReference {get; set;}
}
String json = @"{'Amount':16700000,'CardNumber':'0095','MerchantReference':'7654325'}";
Transaction t = Json.JsonConvert.DeserializeObject<Transaction>(json);
Console.WriteLine(t.CardNumber); - error on this line -invalid token '(' in class, struct, or interface member declaration
Console.WriteLine(t.Amount);
Console.WriteLine(t.MerchantReference);

protected void Page_Load(object sender, EventArgs e)
{


}



}