Web Forms :: Write Function For This Algorithm?

Feb 13, 2010

to write function in C#

I need to write function for this algorithm.

SSCC
The check digit calculation uses the standard method. Suppose you want to calculate the check digit for ID number 10614141192837465.

Step One: From the right to left, start with odd position, assign the odd/even position to each digit.

Index
1
2
3
4
5

Digit
1
0
6
1

Position
odd
even
odd
even

Step Two: Sum all digits in odd position and multiply the result by 3.
(1+6+4+4+1+2+3+4+5)*3=90

Step Three: Sum all digits in even position.
(0+1+1+1+9+8+7+6)=33

Step Four: Sum the results of step three and four:
90+33=123

Step Five: Divide the result of step four by 10. The check digit is the number which adds the remainder to 10. In our case, divide 123 by 10 we get the remainder 3. The check digit then is the result of
10-3=7.

View 5 Replies


Similar Messages:

MVC :: Razor Function And Lambda Functions / Write A Function To Reuse Some Functionality?

Mar 8, 2011

I would like to write a function to reuse some functionality that I repeat over and over...

For example:

[code]....

What's changing, in every field, is only the lambda function to get the current field to edit (Name, City, Address, etc...).

What is the best method? Or better: is there ANY method to extract a generic function?

View 18 Replies

Web Forms :: How To Write A Function To Return A CSS Class Name

Jan 24, 2010

I'm new to C# and ASP and can't seem to figure out how to write a function to return a CSS Class name.

Here's what I have so far:

In "MyWeb.master" I have a line that reads:

<asp:HyperLink ID="HyperLink1" text="xxxxx"
cssClass='<%# MyCssStyle("ddd") %>'
NavigateUrl="http://www.RDRR.com/Catalog.aspx?TribeID=1"
runat="server" />

And in "MyWeb.master.cs" I have a routine within the partial class that reads:

public string MyCssStyle(string myInput)
{
myInput = "NavigationBarUnselected";
return myInput;
}

This code does not throw an error, but neither does it return a value. What have I missed?

View 8 Replies

Web Forms :: How To Write Approval Function Through Email

Apr 27, 2016

How to develop approval system through email using asp.net?

Process Flow:

1. User submit order form request to manager. - The Order Form will send email to manager and ask for the approval.

2. Manager will do approve on his email.

View 1 Replies

Web Forms :: How To Write A Function To Insert A Values In New Table

Jun 24, 2010

We have two database called First(Application) and Last(Workflow) I am submitting a Personal injury report which contains Date of Accident,time,eventID,eventDate,etc.

After submitted the button, these values in insert one of the database(First). At the same time few above column values in insert on another database(Last). Now i want to write a function to insert these values (selected values from both the tables) into new table in First Database.

Because we are adding new tables for audit purpose. User are saying their report are missing. that y we are inserting new table.

View 2 Replies

Forms Data Controls :: Write Grid View Line In Code Behind Using Function?

Nov 16, 2010

[Code]....

How to write Grid view line in code behind using function

View 6 Replies

How To Write A Parameter For The Function

Feb 9, 2010

[Code]....

and I want to call this Button2_Click from my code, what should I write as parameters of this function?

View 3 Replies

How To Write The Validate Function

Aug 28, 2010

I have a simple class Employee that I would like to validate using attributes, but I'm not sure how to write the Validate function:

[Code]....

what my Validate function should look like?

View 10 Replies

Using Alert In Response.Write Function In C#

Feb 23, 2011

I have database code like this

try
{
string strConnectionString = ConfigurationManager.ConnectionStrings["SqlServerCstr"].ConnectionString;
SqlConnection myConnection = new SqlConnection(strConnectionString);
myConnection.Open();
string hesap = Label1.Text;
string musteriadi = DropDownList1.SelectedItem.Value;
string avukat = DropDownList2.SelectedItem.Value;
SqlCommand cmd = new SqlCommand("INSERT INTO AVUKAT VALUES (@MUSTERI, @AVUKAT, @HESAP)", myConnection);
cmd.Parameters.AddWithValue("@HESAP", hesap);.......

It works fine but what I want, in the catch function, is to call the javascript alert function.

I've tried this

Response.Write("<script language=javascript>alert('ERROR');</script>);

But there is an error

How can I show error message in javascript alert function?

View 2 Replies

DataSource Controls :: How To Write A Function Or A Storeprocedure

Feb 17, 2010

I have a tbale in database tow tables city and Intrest I need to calculate somethign like this

city1*intrest1 + city2*Intrest2 + city3*intreste3

final result I ned to asing in other column

View 7 Replies

Is It Mandatory To Write Ready Function Every Time While Doing Jquery

Jan 17, 2011

Is it mandatory to write $(document).ready(function () {... }) every time ?

Can't we do it without this line?

View 6 Replies

MVC :: How To Write A Function To Generate A List From Enum In The Controller?

Jul 1, 2010

i have a model:

[Code]....

and in my controller, i have:

[Code]....

and this ViewData contains the information of a type of List<SelectListItem>,which can be used to generate a dropdownlist in the view later on. BUT, now i want to write a function in my controller to generate List<SelectListItem> based on different input enum, what like want to do is like this:

[Code]....

however, there are so many errors.

View 2 Replies

Webforms - Write In B.aspx Page_Load Function, Intellisense Don't Know Textbox1?

Dec 3, 2010

In a.aspx i have a textbox with ID="Textbox1".In b.aspx, i have a label with ID="Label1"I want when i open b.aspx, Label1.text = Textbox1.Text..but when i write in b.aspx Page_Load function, intellisense don't know Textbox1.

View 5 Replies

Forms Data Controls :: Write Conditional Onclick Function Based On "" Value

Dec 30, 2010

I need to call two dofferent javascript functions accroding to the value of a Databinder item.

<%
if
((DataBinder.Eval(Container.DataItem,
"account_type"))
== "Investor")
&nbsp;&nbsp; {
%>
<a
href="javascript:void(0)"
onclick="ViewInvestorDetail('<%#
DataBinder.Eval(Container.DataItem, "row_id")%>','<%=&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; BasePage.ServerPath %>')"
><h3><%#
DataBinder.Eval(Container.DataItem,
"account_username")%></h3></a>
<%....................................

View 6 Replies

Web Forms :: Finding Best Algorithm For Search Page

Mar 30, 2010

I am creating a search page where we can find the product by entering the text.

ex: Brings on the night.

My query bring the records which contain atleast word from this.

Needs: 1. First row should contains the record with the given sentence. 2. second row next most matching. 3. Third row next matching ...etc

How to achieve this. Is there any algorithm for this.

View 11 Replies

Web Forms :: Write In Chunks / Parameters Are Not Supported For The Write Method

Mar 29, 2011

I am reading in a file into a string. Then I am writing this string to a stream. I know this code works fine.

The only problem that I have is with the line that write the data in chunks where the parameters is not supported for the Write method.

The line that has the problem is this line. What do I need to change here?

OutPut.Write(buffer, 0, Math.Min(to_write, WRITE_CHUNK));

[Code]....

View 2 Replies

Security :: Which Algorithm Are PasswordDeriveBytes Using

Jun 21, 2010

PasswordDeriveBytes take 4 paramteres and return an encrypted key basead on 4 parameters: passPhrase, saltValue, hashAlgoithm and password iteration

I wonder what algorithm PasswordDeviveBytes are using, so I can tell someone who are not .NET programmer that this secretkey was made by that alogorithm and that he can use this algorithm also - And then he should get the same results as PasswordDeriveBytes method

View 2 Replies

Php - MembershipProvider.GetPassword Algorithm?

Dec 1, 2010

We are converting an ASP site (using DotNetNuke) to a new PHP site. The only thing we have right now is a full export of the existing database. One of the tables is called "aspnet_Membership" and contains the following fields:

Password (looks like base64)
PasswordFormat (always value 2)
PasswordSalt (looks like base64)
PasswordQuestion (always empty)
PasswordAnswer (always empty)

We would like to decode these passwords and hash them to fit our own framework. From what I understand from the .NET documentation these kind of passwords can be decrypted. Is there an algorithm available that can do this or is it more complicated than that? Will it be possible if we create an ASP script on the current server?

View 2 Replies

Security :: Changing The Password Algorithm?

Dec 28, 2010

can I change the password algorithm and still use the sqlMembershipProvider or do I have to create a new sqlMembershipProvider. If so, are they any step by step tutorials on how to do that.

View 1 Replies

Algorithm To Determine Tournament Bracket?

Oct 23, 2010

I need an algorithm to determine who match who in the tournament bracket, say I have 32 ( number could be flexible) contestants seeded 1 to 32, at round 1, seed 1 matches with 32, seed 2 with 31 and so forth. What about 2nd, 3rd, 4th and 5th round? I need an algorithm to be programmed into computer.

View 3 Replies

C# - Javascript Hash And Equivalent Algorithm?

Jan 31, 2011

Using this code on the javascript side and

Using sha As New SHA256Managed
Using memStream As New MemoryStream(Encoding.ASCII.GetBytes("Hello World!"))
Dim hash() As Byte = sha.ComputeHash(memStream)
Dim res As String = Encoding.Default.GetString(hash)
End Using
End Using

I have been unable to recreate the same hash for the same values with these two bits of code.

The javascript implementation returns: 7f83b1657ff1fc53b92dc18148a1d65dfc2d4b1fa3d677284addd200126d9069

and the vb.net example returns: ƒeñüS-ÁHÖ]ü-KÖw(JÝÒ mi"

What am I missing? I assume it's something to do with the character encoding?

[code]...

View 3 Replies

How To Encrypt The ViewState Using SHA1 Or Some Other Algorithm

Jan 22, 2011

I heard that .NET framework will encrypt the ViewState using SHA1 or some other algorithm. So if i know the SHA1 encryption and decryption algorithm can i tamper a ViewState?I mean a malicious user studies SHA1 encryption algorithm,if he understand that algorith and develops decryption algorithm ,will it open the road of viewstate tampering? or SHA1 or other algorithm uses any random tricks for encryption and decryption?

View 1 Replies

Algorithm To Display The Emails As Images

Jun 16, 2010

In my project I have a lot of email addresses on static sites.Is there an algorithm to display the emails as images, so bots can't find them?

View 1 Replies

Security :: AES Example / Implementing AES - Key Not Valid For Algorithm

Jun 21, 2010

I need an example on how to implement AES encryption/decryption in .NET. I've been googling but haven't yet found any good examples. I've for example found AES example whih after some research wasn't 100% AES. I have to make sure by AES encryption/decryption is 100% AES, as I have to send email to the authorities explaining how I use AES (with secret key all), so they can hire some encryption expert which verify that we encrypt/decrypt it correctly. So he can verify that the what I implemented in AES is actually 100%. I'm reading the AES standard and how it's to be implemted in .NET Here is some code I'm having trouble with:

[Code]....

Which throws an CryptographicException: Specified key is not a valid size for this algorithm.

View 1 Replies

How To Encrypt The Password By Using The Encryption Algorithm Dll

Feb 8, 2011

i want to encrypt the password by using the encryption algorithm dll uploaded by the user. is it possible to do the action. how can i call the method used by the user to create the dll.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved