473,587 Members | 2,413 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Re page hangs

Hi,

I have a problem and not sure what is going on here, may be the coding is
not proper.
This is a simple page with calendar events.
Everything works fine until I click on View Week link. Then page hangs.
Clicking on a day or Next Month or Previous Month work just fine.
Here is the code:

+++++++++++++++ +++++++++++++++ +++++++++++++++ +++++++++++++++ +++++++
<%@ Register TagPrefix="enli ghten" TagName="client menu"
Src="../includes/clientmenu.ascx " %>

<!-- #INCLUDE Virtual="../includes/header.aspx" -->
<!-- #INCLUDE Virtual="../includes/boclient.aspx" -->
<!-- #INCLUDE Virtual="../includes/boadmin.aspx" -->
<!-- #INCLUDE Virtual="../includes/bocalendarevent s.aspx" -->

<script language="vb" runat="server">

Dim myClient As New boClient
Dim myAdmin As New boAdmin
Dim myCalendarEvent s As New boCalendarEvent s

Sub Page_Load
' Setup menu called from custom user control
If Not Request.QuerySt ring("id") Is Nothing Then
pnlClientmenu.V isible = "True"
ascxClientmenu. intID=CInt(Requ est.QueryString ("id"))
End If

pnlSidebarMyRes ources.Visible = true

' Setup client object datasource
myClient.DSN = ConfigurationSe ttings.AppSetti ngs("eDSN")
myAdmin.DSN = ConfigurationSe ttings.AppSetti ngs("eDSN")
myCalendarEvent s.DSN = ConfigurationSe ttings.AppSetti ngs("eDSN")

' Populate dropdown lists and bind data for editing
If Not Page.IsPostBack Then
' here we check if we need to render calendar on a specific Month
If Not Request.QuerySt ring("cdate") Is Nothing Then
calEvents.Visib leDate = Request.QuerySt ring("cdate")
End If
PopulateAndBind Data()
End If
End Sub

Sub PopulateAndBind Data()
Dim dstClient As DataRow
Dim dstAdmin As DataRow

Try
' Client ID
If Not Request.QuerySt ring("id") Is Nothing Then
viewstate.Add(" id", Request.QuerySt ring("id"))
End If
' Administration ID
If Not Request.QuerySt ring("aid") Is Nothing Then
viewstate.Add(" aid", Request.QuerySt ring("aid"))
End If
' account types
If Not Request.QuerySt ring("actypeid" ) Is Nothing Then
viewstate.Add(" actypeid", Request.QuerySt ring("actypeid" ))
End If

' Get client information; if viewing a specific client's calendar
If Not viewstate("id") Is Nothing Then
dstClient = myClient.getCli entName(viewsta te("id"))
lblClientName.T ext = ": " & dstClient("fnam e") & " " & dstClient("mnam e")
& " " & dstClient("lnam e")
' Get admin information; if viewing a specific admin's calendar
Elseif Not viewstate("aid" ) Is Nothing Then
dstAdmin = myAdmin.getAdmi nName(viewstate ("aid"))
lblClientName.T ext = "for case worker: " & dstAdmin("lname ") & ", " &
dstAdmin("fname ")
End If
Catch ex As SqlException
lblStatusCalend ar.Text = "An error occured loading the client information.
Please contact your manager. <input type='hidden' name='errorStri ng'
value='" & ex.Message & "'>"
End Try
End Sub

Sub Calendar_Render Day(s As Object, e As dayRenderEventA rgs)
Dim dstCalendarEven ts As DataSet
Dim ctlCell As TableCell
Dim dtCalendarEvent s As DataTable
Dim drCalendarEvent s As DataRow
Dim bDayHasEvents As Boolean

ctlCell = e.Cell
Dim dToday As Date
dToday = e.Day.Date.ToSt ring("yyyy/MM/dd")

' Get client information; if viewing a specific client's calendar
If Not viewstate("id") Is Nothing Then
' Get calendar events for this day for a specific client
dstCalendarEven ts = myCalendarEvent s.getCalendarEv ents(viewstate( "id"),
dToday)
Elseif Not viewstate("aid" ) Is Nothing Then
' Get calendar events for this day for a specific administrative user
dstCalendarEven ts =
myCalendarEvent s.getCalendarEv entsForCaseWork er(viewstate("a id"),
viewstate("acty peid"), dToday)
Else
' Get calendar events for this day for all clients
dstCalendarEven ts = myCalendarEvent s.getCalendarEv ents(0, dToday)
End If

' Set dataset results into a datatable to loop through
dtCalendarEvent s = dstCalendarEven ts.tables("Serv icePlanProgramU pdate")
' Loop through events and add to calendar
If Not viewstate("id") Is Nothing Then
' Add client events to calendar, do not show client name since it is the
same
bDayHasEvents = False
For Each drCalendarEvent s In dtCalendarEvent s.rows
Dim strMinutes As String

If drCalendarEvent s("compliance_m inutes") < 9 Then
strMinutes = 0 & drCalendarEvent s("compliance_m inutes")
Else
strMinutes = drCalendarEvent s("compliance_m inutes")
End If
If viewstate("id") Is Nothing Then
ctlCell.Control s.Add(New LiteralControl( "<p>" &
drCalendarEvent s("compliance_h our") & ":" & strMinutes &
drCalendarEvent s("compliance_a mpm") & " " & drCalendarEvent s("activity") & "
(<a href='http://www.mypage.com/caseworker/viewactivity.as px?view=c&id=" &
drCalendarEvent s("id") & "&spaid=" & drCalendarEvent s("spaid") & "&idate=" &
dToday & "'>" & "View" & "</a>)</p>"))
Else
ctlCell.Control s.Add(New LiteralControl( "<p>" &
drCalendarEvent s("compliance_h our") & ":" & strMinutes &
drCalendarEvent s("compliance_a mpm") & " " & drCalendarEvent s("activity") & "
(<a href='http://www.mypage.com/caseworker/viewactivity.as px?view=clc&id= " &
drCalendarEvent s("id") & "&spaid=" & drCalendarEvent s("spaid") & "&idate=" &
dToday & "'>" & "View" & "</a>)</p>"))
End If

bDayHasEvents = True
Next
If bDayHasEvents Then
ctlCell.BackCol or=System.Drawi ng.Color.FromAr gb(60, 160, 220)
End If
Else
' Add events to calendar, show client name since it is different
bDayHasEvents = False
For Each drCalendarEvent s In dtCalendarEvent s.rows
Dim strMinutes As String

If drCalendarEvent s("compliance_m inutes") < 9 Then
strMinutes = 0 & drCalendarEvent s("compliance_m inutes")
Else
strMinutes = drCalendarEvent s("compliance_m inutes")
End If

If Not viewstate("aid" ) Is Nothing Then
ctlCell.Control s.Add(New LiteralControl( "<p>" &
drCalendarEvent s("compliance_h our") & ":" & strMinutes &
drCalendarEvent s("compliance_a mpm") & " " & drCalendarEvent s("activity") & "
(<a href='http://www.mypage.com/caseworker/viewactivity.as px?view=ca" &
"&aid=" & viewstate("aid" ) & "&id=" & drCalendarEvent s("id") & "&spaid=" &
drCalendarEvent s("spaid") & "&idate=" & dToday & "'>" &
drCalendarEvent s("client_name" ) & "</a>)</p>"))
Else
ctlCell.Control s.Add(New LiteralControl( "<p>" &
drCalendarEvent s("compliance_h our") & ":" & strMinutes &
drCalendarEvent s("compliance_a mpm") & " " & drCalendarEvent s("activity") & "
(<a href='http://www.mypage.com/caseworker/viewactivity.as px?view=c&id=" &
drCalendarEvent s("id") & "&spaid=" & drCalendarEvent s("spaid") & "&idate=" &
dToday & "'>" & drCalendarEvent s("client_name" ) & "</a>)</p>"))
End If

bDayHasEvents = True
Next
If bDayHasEvents Then
ctlCell.BackCol or=System.Drawi ng.Color.FromAr gb(60, 160, 220)
End If
End If
End Sub

Sub Calendar_Select ionChanged(s As Object, e As EventArgs)
Dim dCurrentDate As DateTime
dCurrentDate = calEvents.Selec tedDate

If Not viewstate("aid" ) Is Nothing Then
' week is selected
If calEvents.Selec tedDates.Count = 7 Then
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?aid=" &
viewstate("aid" ) & "&idate=" & dCurrentDate & "&mode=w")
Else
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?aid=" &
viewstate("aid" ) & "&idate=" & dCurrentDate & "&mode=d")
End If
Else If Not viewstate("id") Is Nothing Then
' week Is selected
If calEvents.Selec tedDates.Count = 7 Then
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?id=" &
viewstate("id") & "&idate=" & dCurrentDate & "&mode=w")
Else
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?id=" &
viewstate("id") & "&idate=" & dCurrentDate & "&mode=d")
End If
Else
If calEvents.Selec tedDates.Count = 7 Then
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?idate= " &
dCurrentDate & "&mode=w")
Else
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?idate= " &
dCurrentDate & "&mode=d")
End If
End If

End Sub
</script>

<p>
<strong>View Calendar <asp:label id="lblClientNa me" runat="server" Text=""
/>

</strong>
</p>

<!--- Menu --->
<asp:panel ID="pnlClientme nu" Visible="false" RunAt="server">
<enlighten:clie ntmenu id="ascxClientm enu" intID=0 RunAt="server" />
</asp:panel>

<form runat="server">
<p>

<asp:label ID="lblStatusCa lendar" RunAt="server" />

<!-- Calendar -->
<ASP:Calendar
Width="100%"
CellPadding="10 "
ID="calEvents"
ShowGridLines=" true"
DayStyle-BackColor="ligh tblue"
TodaydayStyle-BackColor="ligh tyellow"
WeekendDayStyle-BackColor="ligh tgrey"
SelectionMode=" DayWeekMonth"
SelectWeekText= "View Week"
OnSelectionChan ged="Calendar_S electionChanged "
OnDayRender="Ca lendar_RenderDa y"
PrevMonthText=" Previous Month"
NextMonthText=" Next Month"
RunAt="Server" />
</p>
</form>
<!-- #INCLUDE Virtual="../includes/footer.aspx" -->

+++++++++++++++ +++++++++++++++ +++++++++++++++ +++++++++++++++ ++

Thank you,

Gene
Nov 19 '05 #1
1 1506
Also, forgot to mention, after that I can not navigate site for some time,
either it does not go anywhere or very slow

"AMD Desktop" <zo********@yah oo.com> wrote in message
news:RN******** ************@ma gma.ca...
Hi,

I have a problem and not sure what is going on here, may be the coding is
not proper.
This is a simple page with calendar events.
Everything works fine until I click on View Week link. Then page hangs.
Clicking on a day or Next Month or Previous Month work just fine.
Here is the code:

+++++++++++++++ +++++++++++++++ +++++++++++++++ +++++++++++++++ +++++++
<%@ Register TagPrefix="enli ghten" TagName="client menu"
Src="../includes/clientmenu.ascx " %>

<!-- #INCLUDE Virtual="../includes/header.aspx" -->
<!-- #INCLUDE Virtual="../includes/boclient.aspx" -->
<!-- #INCLUDE Virtual="../includes/boadmin.aspx" -->
<!-- #INCLUDE Virtual="../includes/bocalendarevent s.aspx" -->

<script language="vb" runat="server">

Dim myClient As New boClient
Dim myAdmin As New boAdmin
Dim myCalendarEvent s As New boCalendarEvent s

Sub Page_Load
' Setup menu called from custom user control
If Not Request.QuerySt ring("id") Is Nothing Then
pnlClientmenu.V isible = "True"
ascxClientmenu. intID=CInt(Requ est.QueryString ("id"))
End If

pnlSidebarMyRes ources.Visible = true

' Setup client object datasource
myClient.DSN = ConfigurationSe ttings.AppSetti ngs("eDSN")
myAdmin.DSN = ConfigurationSe ttings.AppSetti ngs("eDSN")
myCalendarEvent s.DSN = ConfigurationSe ttings.AppSetti ngs("eDSN")

' Populate dropdown lists and bind data for editing
If Not Page.IsPostBack Then
' here we check if we need to render calendar on a specific Month
If Not Request.QuerySt ring("cdate") Is Nothing Then
calEvents.Visib leDate = Request.QuerySt ring("cdate")
End If
PopulateAndBind Data()
End If
End Sub

Sub PopulateAndBind Data()
Dim dstClient As DataRow
Dim dstAdmin As DataRow

Try
' Client ID
If Not Request.QuerySt ring("id") Is Nothing Then
viewstate.Add(" id", Request.QuerySt ring("id"))
End If
' Administration ID
If Not Request.QuerySt ring("aid") Is Nothing Then
viewstate.Add(" aid", Request.QuerySt ring("aid"))
End If
' account types
If Not Request.QuerySt ring("actypeid" ) Is Nothing Then
viewstate.Add(" actypeid", Request.QuerySt ring("actypeid" ))
End If

' Get client information; if viewing a specific client's calendar
If Not viewstate("id") Is Nothing Then
dstClient = myClient.getCli entName(viewsta te("id"))
lblClientName.T ext = ": " & dstClient("fnam e") & " " & dstClient("mnam e") & " " & dstClient("lnam e")
' Get admin information; if viewing a specific admin's calendar
Elseif Not viewstate("aid" ) Is Nothing Then
dstAdmin = myAdmin.getAdmi nName(viewstate ("aid"))
lblClientName.T ext = "for case worker: " & dstAdmin("lname ") & ", " &
dstAdmin("fname ")
End If
Catch ex As SqlException
lblStatusCalend ar.Text = "An error occured loading the client information. Please contact your manager. <input type='hidden' name='errorStri ng'
value='" & ex.Message & "'>"
End Try
End Sub

Sub Calendar_Render Day(s As Object, e As dayRenderEventA rgs)
Dim dstCalendarEven ts As DataSet
Dim ctlCell As TableCell
Dim dtCalendarEvent s As DataTable
Dim drCalendarEvent s As DataRow
Dim bDayHasEvents As Boolean

ctlCell = e.Cell
Dim dToday As Date
dToday = e.Day.Date.ToSt ring("yyyy/MM/dd")

' Get client information; if viewing a specific client's calendar
If Not viewstate("id") Is Nothing Then
' Get calendar events for this day for a specific client
dstCalendarEven ts = myCalendarEvent s.getCalendarEv ents(viewstate( "id"),
dToday)
Elseif Not viewstate("aid" ) Is Nothing Then
' Get calendar events for this day for a specific administrative user
dstCalendarEven ts =
myCalendarEvent s.getCalendarEv entsForCaseWork er(viewstate("a id"),
viewstate("acty peid"), dToday)
Else
' Get calendar events for this day for all clients
dstCalendarEven ts = myCalendarEvent s.getCalendarEv ents(0, dToday)
End If

' Set dataset results into a datatable to loop through
dtCalendarEvent s = dstCalendarEven ts.tables("Serv icePlanProgramU pdate")
' Loop through events and add to calendar
If Not viewstate("id") Is Nothing Then
' Add client events to calendar, do not show client name since it is the
same
bDayHasEvents = False
For Each drCalendarEvent s In dtCalendarEvent s.rows
Dim strMinutes As String

If drCalendarEvent s("compliance_m inutes") < 9 Then
strMinutes = 0 & drCalendarEvent s("compliance_m inutes")
Else
strMinutes = drCalendarEvent s("compliance_m inutes")
End If
If viewstate("id") Is Nothing Then
ctlCell.Control s.Add(New LiteralControl( "<p>" &
drCalendarEvent s("compliance_h our") & ":" & strMinutes &
drCalendarEvent s("compliance_a mpm") & " " & drCalendarEvent s("activity") & " (<a href='http://www.mypage.com/caseworker/viewactivity.as px?view=c&id=" &
drCalendarEvent s("id") & "&spaid=" & drCalendarEvent s("spaid") & "&idate=" & dToday & "'>" & "View" & "</a>)</p>"))
Else
ctlCell.Control s.Add(New LiteralControl( "<p>" &
drCalendarEvent s("compliance_h our") & ":" & strMinutes &
drCalendarEvent s("compliance_a mpm") & " " & drCalendarEvent s("activity") & " (<a href='http://www.mypage.com/caseworker/viewactivity.as px?view=clc&id= " & drCalendarEvent s("id") & "&spaid=" & drCalendarEvent s("spaid") & "&idate=" & dToday & "'>" & "View" & "</a>)</p>"))
End If

bDayHasEvents = True
Next
If bDayHasEvents Then
ctlCell.BackCol or=System.Drawi ng.Color.FromAr gb(60, 160, 220)
End If
Else
' Add events to calendar, show client name since it is different
bDayHasEvents = False
For Each drCalendarEvent s In dtCalendarEvent s.rows
Dim strMinutes As String

If drCalendarEvent s("compliance_m inutes") < 9 Then
strMinutes = 0 & drCalendarEvent s("compliance_m inutes")
Else
strMinutes = drCalendarEvent s("compliance_m inutes")
End If

If Not viewstate("aid" ) Is Nothing Then
ctlCell.Control s.Add(New LiteralControl( "<p>" &
drCalendarEvent s("compliance_h our") & ":" & strMinutes &
drCalendarEvent s("compliance_a mpm") & " " & drCalendarEvent s("activity") & " (<a href='http://www.mypage.com/caseworker/viewactivity.as px?view=ca" &
"&aid=" & viewstate("aid" ) & "&id=" & drCalendarEvent s("id") & "&spaid=" &
drCalendarEvent s("spaid") & "&idate=" & dToday & "'>" &
drCalendarEvent s("client_name" ) & "</a>)</p>"))
Else
ctlCell.Control s.Add(New LiteralControl( "<p>" &
drCalendarEvent s("compliance_h our") & ":" & strMinutes &
drCalendarEvent s("compliance_a mpm") & " " & drCalendarEvent s("activity") & " (<a href='http://www.mypage.com/caseworker/viewactivity.as px?view=c&id=" &
drCalendarEvent s("id") & "&spaid=" & drCalendarEvent s("spaid") & "&idate=" & dToday & "'>" & drCalendarEvent s("client_name" ) & "</a>)</p>"))
End If

bDayHasEvents = True
Next
If bDayHasEvents Then
ctlCell.BackCol or=System.Drawi ng.Color.FromAr gb(60, 160, 220)
End If
End If
End Sub

Sub Calendar_Select ionChanged(s As Object, e As EventArgs)
Dim dCurrentDate As DateTime
dCurrentDate = calEvents.Selec tedDate

If Not viewstate("aid" ) Is Nothing Then
' week is selected
If calEvents.Selec tedDates.Count = 7 Then
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?aid=" &
viewstate("aid" ) & "&idate=" & dCurrentDate & "&mode=w")
Else
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?aid=" &
viewstate("aid" ) & "&idate=" & dCurrentDate & "&mode=d")
End If
Else If Not viewstate("id") Is Nothing Then
' week Is selected
If calEvents.Selec tedDates.Count = 7 Then
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?id=" &
viewstate("id") & "&idate=" & dCurrentDate & "&mode=w")
Else
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?id=" &
viewstate("id") & "&idate=" & dCurrentDate & "&mode=d")
End If
Else
If calEvents.Selec tedDates.Count = 7 Then
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?idate= " &
dCurrentDate & "&mode=w")
Else
Response.Redire ct("../caseworker/viewcalendareve nts.aspx?idate= " &
dCurrentDate & "&mode=d")
End If
End If

End Sub
</script>

<p>
<strong>View Calendar <asp:label id="lblClientNa me" runat="server" Text=""
/>

</strong>
</p>

<!--- Menu --->
<asp:panel ID="pnlClientme nu" Visible="false" RunAt="server">
<enlighten:clie ntmenu id="ascxClientm enu" intID=0 RunAt="server" />
</asp:panel>

<form runat="server">
<p>

<asp:label ID="lblStatusCa lendar" RunAt="server" />

<!-- Calendar -->
<ASP:Calendar
Width="100%"
CellPadding="10 "
ID="calEvents"
ShowGridLines=" true"
DayStyle-BackColor="ligh tblue"
TodaydayStyle-BackColor="ligh tyellow"
WeekendDayStyle-BackColor="ligh tgrey"
SelectionMode=" DayWeekMonth"
SelectWeekText= "View Week"
OnSelectionChan ged="Calendar_S electionChanged "
OnDayRender="Ca lendar_RenderDa y"
PrevMonthText=" Previous Month"
NextMonthText=" Next Month"
RunAt="Server" />
</p>
</form>
<!-- #INCLUDE Virtual="../includes/footer.aspx" -->

+++++++++++++++ +++++++++++++++ +++++++++++++++ +++++++++++++++ ++

Thank you,

Gene

Nov 19 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
7262
by: Paul Robinson | last post by:
I am developing a website in ASP that connects to a Sybase database. However, when I try to open a connection to the database the page will not load. The script does not timeout, nor the connection. Further, the Sybase server shows no connection. Because the page is hanging I am unable, with my limited knowledge, to query the error collection....
1
1856
by: Evan Nelson | last post by:
We are running a website on 3 W2K servers running IIS 5.0 as the webservers and using a server running under Windows Server 2003 for the database servers. All of our ASP pages are written using VBScript and we use COM objects written in VB for our business logic. One of our pages was written using a transaction. The page started with...
0
266
by: psb | last post by:
I make a website for a company where sales reps from all over the country order literature. This is the 4th case where the exact same thing is happening in the almost the exact same setup -The website hangs. The user is able to login with username/password via a webpage with a form authentication. Once they are in the site, they can't do any...
2
2316
by: Brad Quinn | last post by:
It appears that IIS hangs the first time two requests are made for same page in quick succession. Although it may very well be something else I'm doing wrong. I have a page (ViewDocument.aspx) that dynamically generates one or more image tags. The source attribute of the image tag is another page (ViewImage.aspx) that simply writes the...
0
1609
by: Jeff | last post by:
Hi - I have an ASP.NET page that hangs (some times; if it loads for you, try refresh/F5 several times) when I try to run it on my localhost. It contains an HTML table for formatting, and within the table are several labels, textboxes, and validators. One of the textboxes is multiline and readonly, and the codebehind page has code to read...
5
2788
by: JasonDamianUs | last post by:
Hello all, I am trying to write a simple PHP script to process a form.. the function seems to be working fine // subscriber is the users email in the form if (( $subscriber ) && ($_SERVER == 'POST') ) thing is while this processing is taking place the page load hangs... in IE i see nothing the page background, in Firefox (even worse) I...
2
2684
by: Pierre Rouleau | last post by:
Hi all, I have a consistent test case where os.popen3() hangs in Windows. The system hangs when retrieving the lines from the child process stdout. I know there were several reports related to os.popen3() hanging under Windows in this group before. I stumbled on a case where a piece of code works in some occasions and hangs consistently...
2
1449
by: Dipti Singh | last post by:
Hi, I have two asp pages. when both contain lots of coding, loops etc. if i run the first page that contain for loop for creating array of textboxes, then this page run successfully. but if i include this first page in the second page using <#include.....> then the for loop is not working n page hangs up. Plz tell me what is the...
1
1965
by: =?Utf-8?B?TmFt?= | last post by:
ASP.NET 1.1.4322 Server1: Windows Server Enterprise Ed 2003 – SP2 Server2: Same as Server 1. IE 6.0 –SP2 After we migrated our website from server1 to server2 everything works fine accept for the following on one page: When you click on Save button, this page is supposed to copy a file from website-A to website-B and display a...
0
7920
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
8215
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8347
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
6626
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5394
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3844
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3879
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2358
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1454
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.