1
Answer

Development of a "secure" web portal

chadi kayrouz

chadi kayrouz

7y
224
1
I need to develop a web portal, where both lawyers and agents access to execute legal transactions. The idea is that agents and lawyers register on the portal. The agents, once registered can open new cases that will have to be picked up by some lawyers for review. So payments will have to be made by agent when a lawyer accepts to take over his or her case. Therefore, the case goes through some steps using a workflow (new -> under review -> accepted/reject -> paid etc.)
 
The portal has to be available in 4 languages, and it is of great importance that all transactions are encrypted.
 
I need to know please ASAP:
1- What would be the best language/plaform/framework (.net, java, Node.js, sharepoint etc.) to build such a secure portal?
2- What would be the best way to secure messages between agents and lawyers. 
Answers (1)
1
Nitin Sontakke

Nitin Sontakke

NA 11.7k 2.2k 8y
How is it different is not clear to me. Can you please explain?
 
In fact, you already seem to have done it. So where is the problem?
 
You should also elaborate on "not working". Did you debug? In _DayRender event, is date variable getting correct value?
 
Accepted
0
Hold On

Hold On

NA 390 13.8k 8y
@Gnanavel Sekar , Thanks for your reply. I will also try this one.
0
Gnanavel Sekar

Gnanavel Sekar

NA 6.8k 452.1k 8y
Just set the minimum value for second calender once the date picked from first calender , for this you may use client side jquery to overcome this.
 example in click event
var arr = selectedDate.split("/");
var date = new Date(arr[2]+"-"+arr[1]+"-"+arr[0]);
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
var minDate = new Date(y, m, d + 1);
$("#EndDate").datepicker('setDate', minDate);
 
 
Refer below links
 
http://stackoverflow.com/questions/27721133/jquery-datepickers-setting-end-date-from-a-start-date
http://stackoverflow.com/questions/24894048/jquery-datepicker-how-to-set-start-and-end-date
http://stackoverflow.com/questions/17016598/jquery-ui-picking-a-start-and-end-date-within-range-based-on-start-date 
http://www.aspsnippets.com/Articles/jQuery-DatePicker-Start-Date-should-be-less-than-End-date-validation.aspx 
 
0
Hold On

Hold On

NA 390 13.8k 8y
@Nitin Sontakke
 
Thank you for pointing my mistake. I got it now. The problem is the ">", I changed it to "<" and now it worked!.
  1. protected void Calendar1_DayRender(object sender, DayRenderEventArgs e)  
  2.         {  
  3.             DateTime date = Convert.ToDateTime(TextBox1.Text);   
  4.   
  5.             if (e.Day.Date < date)  
  6.             {  
  7.                 e.Cell.Enabled = false;  
  8.                 e.Day.IsSelectable = false;  
  9.             }  
  10.         }  
 
0
Hold On

Hold On

NA 390 13.8k 8y
@Nitin Sontakke
 
Yes I have seen it but it's a different scenario.  
0
Nitin Sontakke

Nitin Sontakke

NA 11.7k 2.2k 8y
Have you had a look at this?
 
http://stackoverflow.com/questions/10227417/setting-minimum-and-maximum-date-on-calendar