Hi,
Firstly when you said page I am presume this is a ASP.NET page with C# server side code.
You cannot force the client side to refresh from the server side, unless you provide response upon request.
The method to refresh from the client side is
<HEAD>
<META HTTP-EQUIV="Refresh"...
We have applications which use ClickOnce deployment, and I'm sorry to say the only way that we know here is to redeploy a new version with the config changes.
We did spend quiet a bit of time investigating this issue, but never found a solution, the only way to make your config change copy...
Hi,
You could place the data into a temp table first then update that temp table to fill in the gaps.
after select the temp table for the results
use Indentity(int 1,1) if you need to get around rownum
select Indentity(int 1,1) *
INTO ##temp_any_table_name
from your_table_name
hope that...
Hi,
I have started creating a navigation control using a web custom control.
My navigation control consists of 5-buttons vertical aligned.
i.e.
BUTTON1
BUTTON2
BUTTON3
BUTTON4
BUTTON5
What I WANT to happen is when I click one of these buttons the buttons move apart and links are displayed...
You could create a executable .bat file and then create a schedule task to run every day @ 15:30
Step 1
Take the content of the stored proc (exclude the declaration to create a stored proc) and create an .sql file.
Step 2
Open notepad and create a .bat file
Write in notepad
OSQL -SSERVERNAME...
Hi,
I want to write a VB.NET service that checks the properties on a word file to find out who the author is.
I know how to write a service.
I know how to find out the properties of a file using the IO.FileInfo namespace
But the only problem is I don’t know how to view the author as the...
Hi,
I want to write a VB.NET service that checks the properties on a word file to find out who the author is.
I know how to write a service.
I know how to find out the properties of a file using the IO.FileInfo namespace
But the only problem is I don’t know how to view the author as the...
Hi,
Does anyone know of a class or COM control that I can use to make a rich textbox editor (like hotmail has in for there email message box, i.e. when you are composing a message.)?
Cheers
THE GOV' NOR
Hi all,
what I decide to do with dace advice is use sessions.
So on the page load I wrote
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Session("WipListArr") Is Nothing Then
InitializeArray()...
Hi,
well i click a update button on a datagrid which in turn calls this updatestatus function.
So you maybe right that the arraylist I declared will be instantiated again as a new one.
how do i solve this ???
If I store them in the viewstate or session, how should i implement this ...
fixed by calling
Dim WiPidArrayList As ArrayList
should be
Dim WiPidArrayList As New ArrayList
but still cannot
Lbl_Count.Text = WiPidArrayList.Count
as the count always equals 0, don't know why
any ideas anyone
THE GOV' NOR
Yes, I sure did...
Dim WiPidArrayList As ArrayList
Dim SortArrayList As New ArrayList
Private Sub updatestatus(ByVal wipid As Integer)
WiPidArrayList.Add(wipid)
Lbl_Count.Text = WiPidArrayList.Count
Lbl_Wipidinfo.Text = String.Concat(Lbl_Wipidinfo.Text...
I get this error, a little help!!!!
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the current web request.
Please review the stack trace for more information about the error and where it originated in the code...
May be post this on the Crystal Reports 2 Data Access forum, some guys there may be able to help you... as this is a data access issue. ;-)
THE GOV' NOR
Hi,
Another quick question on the same topic.
I like the idea of ArrayList
But how do I sort through the ArrayList to perform a task on each item once I have populated it the ArrayList?
I know you can use the following code with an Array
For i As Integer = 0 To m_WiPidArrayList.Length - 1...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.