/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/handlers/soccer.ashx
38 строк
1 KB
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
<%@ WebHandler Language="VB" Class="slideshow" %> Imports System.Web.Script.Serialization Imports sharedClasses.dbFunctions Imports System.Data Public Class slideshow : Implements IHttpHandler Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest Dim sqlf As New SqlFunctions Dim com As New Data.SqlClient.SqlCommand Dim value = context.Request.QueryString("value[]") Dim id = context.Request.QueryString("id") Dim result As Integer result = sqlf.NonQuery("update [UserModules].[user].[soccer] set CO_DEPARTMENTS='" + value + "' where id = ' " + id + "'") context.Response.ContentType = "content/text" If result > 0 Then context.Response.Write("ok") Else context.Response.Write("ng") End If End Sub Public ReadOnly Property IsReusable() As Boolean Implements IHttpHandler.IsReusable Get Return False End Get End Property End Class