TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Pinku
1.1k
292
44.1k
How send data from .cs file to .ascx.vb file in vb.net
Oct 4 2019 12:19 AM
public bool IsQuotaAvailable(Neo oNeo, string request)
{
try
{
EdgeQuotaCheckResponse oresponse = MakeOAuthPostQuotacheck(oNeo, GetQuotaCheckURI(), request);
if (oresponse != null)
{
foreach (RemainingQuota quota in oresponse.Limits)
{
if (quota.limit_type.ToLower() == "daily")
{
DailyAvailableQuota = quota.remaining_quota;
}
else if (quota.limit_type.ToLower() == "monthly")
{
MonthlyAvailableQuota = quota.remaining_quota;
}
}
this is a .cs file. iwa nt to send the DailyAvailableQuota data to an .ascx.vb file. so that i can able to show this data in UI
Reply
Answers (
1
)
Read and Write Excel Documents Using OLEDB
pls help on datagrid view insert /update operation