My Req:
We have an web application with gridivew. Gridivew having the data when user click launch to file, soon after it automatically populated the windows application gridivew. How to design this application. (already windows application are open state)
User Profile
Collapse
-
How to integrate web and windows appication
-
How to Integrate Java web application with .net windows application?
I have some doubt in integration. We have a java based web applications and .net based windows application.
Example"
Java Web applications having a grid with some datas. when the user will clicked the button (from web application), then all the grid datas should be populated in windows application gridview. It will happen concurrency.
How will design the application? Please tell me some feasiable... -
Hi
Use master pages. It would be feasible soulutions for your problem.... -
Try this method it might be helpful
protected void GridView1_RowDa taBound(object sender, GridViewRowEven tArgs e)
{
if (e.Row.RowType == DataControlRowT ype.DataRow && (e.Row.RowState & DataControlRowS tate.Edit) != 0)
{
Control c = e.Row[0].Cells[0].Controls[0];
this.SetFocus(c );
}
}Leave a comment:
-
How to Integrate Java web application with .net windows application?
I have some doubt in integration. We have a java based web applications and .net based windows application.
Example"
Java Web applications having a grid with some datas. when the user will clicked the button (from web application), then all the grid datas should be populated in windows application gridview. It will happen concurrency.
How will design the application? Please tell me some feasiable... -
Leave a comment:
No activity results to display
Show More
Leave a comment: