Click here to Skip to main content
15,909,205 members

Comments by sheryi26 (Top 9 by date)

sheryi26 13-Sep-14 0:24am View    
Thanks for your answer.
I will try your solution.
sheryi26 9-Apr-14 13:26pm View    
Dear Murugesan22,
Thanks for your solution, I did all of the solution, but I have a problem about making relationship between 2 tables.
Where can I do that? in view or just in diagram?
It has parsing error in this line:
<asp:datalist id="dtlArticleBox" runat="server" datasource="<%# ((DataRowView)Container.DataItem).Row.GetChildRows("Relation") %>">

Kind Regards in advance for your help
sheryi26 30-Dec-10 13:32pm View    
Dear Manfred, Thanks :)
sheryi26 30-Dec-10 10:47am View    
yes,"txtPassword" and "txtPasswordHash" are the IDs of my input boxes, I edited my question again and copy all of my 2 pages' code...
sheryi26 30-Dec-10 9:48am View    
I had changed my script to this, I don't know taht I understand your help correctly or not! but it did not answered... I am working on it...

<script language="javascript">
function encPass()
{
var tb1 = document.getElementById("txtPassword");
var tb2 = document.getElementById("txtPasswordHash");

if(tb1.value =="")
{
alert("Please Enter your Password!");
return false;
}
tb2.value=MD5(tb1.value);
tb1.value="";
return true;
}
</script>