Pass variable to html frame -


i have django app having

views.py

//some code
render(request, 'showmain.html',{"info": info})

and showmain.html

<html> <frameset rows = "70%,*">   <frame src="showinfo.html">   </frameset>   </html> 

i want pass data in info showinfo.html. how can done?


Comments

Popular posts from this blog

android - Pass an Serializable object in AIDL -

How to provide Authorization & Authentication using Asp.net, C#? -

How to use Authorization & Authentication in Asp.net, C#? -