I,
I have an aspx page that on load creates a treeview.
Loading the treeview takes a while and I want to show a message that the treeview is being loaded. Coming from windows forms I tried to do this:
code:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)...
ISPrincess,
Hi.
I am having almost the same problem and was wondering if you were able to fix it.
In my case everything works fine on the dev machine (the tree view works fine). But when I moved it to the production server, the treeview won't apear and only the data does (I have created the dll...
Never mind, I figured out how to do it:
System.Web.UI.WebControls.TextBox tb = new TextBox();
tb.ID = "qa"+Reader["QuestionID"].ToString();
tb.TextMode=System.Web.UI.WebControls.TextBoxMode.MultiLine;
tb.Height=50;
tb.Width=220;
Acell.Controls.Add(tb);
Hi,
I am building a webpage for Surveys.
I have many surveys and Each survey has many questions that change periodically.
I want to build the survey pages so that the questions are displayed dynamically by reading from a database. Thats not a problem.
The problem is that I have to create server...
cesark,
I was wondering if you ever found the solution cause I am facing the similar problem.
I have a list box that I add items to it using java script, but when I use any server controls on the page (like calendar) the value go away!
I need to invoke a C# function using java script so that I...
Thanks guys,
I havn't touched the BIOS, I just used windows cd to do the fresh install, but I'm thinking that I may need to upgrade the BIOS.
The other option is to use a fan utility to control it.
Thanks
Hi,
I am having a strange problem.
I have a SONY-VAIO PCV RX560. I wanted to upgrade it from XP Home to XP pro.
The problem is that after upgrading to Pro (fresh install) the computer fan is working non stop! It used to work for a couple of minutes and then stop.
The first time that I did the...
Thanks for the fast reply!
We've decided to do the exact same thing (##global temp table)
I use SQL Server with ASP.NET and pass text fields with no problem, but I guess the temp table is better in this case.
Thanks
Hi,
I have 2 sql server. A stored procedure on each. Stored procedure on server 1 needs to pass an ntext variable to sp on server 2 (this ntext parameter is basically an XML string).
The problem is that since I can't declare a local varaible as ntext inside a stored procedure, I can't pass it to...
Never mind, I used MSXML2
Function Main()
Dim xmlhttp
Dim result
Set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.Open "GET", "myurl",true
xmlhttp.Send
Do While xmlhttp.readyState <> 4
Loop
If Err.Number>0 Then
Main=DTSTaskExecResult_Failure
Else
Main=...
Hi,
I have a package set up on a SQL Server, the first step is to hit an asp page. I initialy had the following vbscript code (under an Active X script task):
-----------------
Function Main()
Set ae = CreateObject("InternetExplorer.application.1")
ae.visible=false
ae.Navigate "http://myurl"...
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.