You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 5, 2022. It is now read-only.
def page(request):
# a = int(request.GET['num1'])
# b = int(request.GET['num2'])
# val = a + b
val1 = request.POST['num1']
a = int(val1)
val2 = request.POST['num2']
b = int(val2)
return render(request,'khushi/block.html',{'result':val})
#its very ..hard to solve this stupid..proble...last night waas working properly...now again showing same problem
The text was updated successfully, but these errors were encountered:
Its weired that...once i had executed properly, next day when i opened
again,its again started showing... MultiValueDictKerError..
And most miracle is that...my HTML page has ..'n1' variable, and when i
start my SERVER,its says ..'n1' is not defined.
Also, when i see in debugging mode,in Console,.. when i type 'n1'..its
say..'n1' variable not defined...
Same program 2 days before ,it was executed.
On Nov 4, 2019 11:01 PM, "Karl Hobley" <[email protected]> wrote:
Please could you give more detail, such as:
- What your page model and panels configuration looks like
- A traceback of the error
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#64>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKNEVK7FNINRFJDOICZ47NTQSBL77ANCNFSM4JIMDXTQ>
.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
def page(request):
# a = int(request.GET['num1'])
# b = int(request.GET['num2'])
#its very ..hard to solve this stupid..proble...last night waas working properly...now again showing same problem
The text was updated successfully, but these errors were encountered: