all groups > asp.net > july 2004 > threads for sunday july 18
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Adding tooltip tip tp list box
Posted by Shiju Poyilil at 7/18/2004 11:45:03 PM
Is there anyway to assign tooltip dynamically to the list items in the listbox in asp.net.
Rgds
Shiju... more >>
would you please share your experience in ASP.NET printing
Posted by Edward at 7/18/2004 9:34:32 PM
Hello, everyone,
My application needs some print functions , such as Print Invoice, Print
Query Results, or Print Charts.
I'm sure most of you must have the experience, would you please do me a
favor, what's the best way ?
Thanks.
Edward
... more >>
adding a control to a datagrid dynamically...
Posted by Asha at 7/18/2004 6:49:04 PM
greetings, i need to add some webcontrols like txt, chk, ddl to a datagrid FROM code behind. any resource avaialble?... more >>
What is most efficient? OnItemDataBound or using a function
Posted by Anders at 7/18/2004 5:56:33 PM
Hi, I was wondering what is most efficient of the two.
Is it more efficient to add server controls within the Itemtemplate and use
OnItemDataBound to manipulate and databind the servercontrols.
Or is better to send the DataItems via. a method/function from within the
Itemtemplate (<%# call f... more >>
DataGrid in detailspage
Posted by Cemal Karademir at 7/18/2004 5:36:11 PM
Hi,
I'm new in asp.net. I do have experience with VB6, but not much in asp.Net.
Can someone provide me the solution of my problem.
I have on a masterpage an DataGrid containing articles. On the detailpage I
want the selected article (from the masterpage) to be added in an other
DataGrid.
... more >>
help with extreme slow site
Posted by Guoqi Zheng at 7/18/2004 4:42:41 PM
Dear sir,
My forum site is getting much slower. At this moment, it takes 20 seconds
for the first hit. The second hit is much quicker, I think it is because of
cache. Any idea how can I increase the speed of my ASP.NET site.
This is a forum site using VB.NET + MSDE. The database is about 500... more >>
Howto open a file dialogbox (Save As) when using WriteFile
Posted by Anders at 7/18/2004 3:48:08 PM
Hi,
This is the code I am using:
string filepath = "Themes/img/logo.rar";
string filename = System.IO.Path.GetFileName(filepath);
Response.Clear();
Response.ContentType = "application/zip";
Response.AddHeader("Content-Disposition", "attachment; filename=" +
filename);
Response.Flush(... more >>
Center allignment
Posted by Aitham alama at 7/18/2004 3:04:45 PM
How can i make a dynamically created web label control to to be Center
allignment
Thanks
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
JavaScript include and Pocket PC Internet Explorer
Posted by WL at 7/18/2004 3:00:31 PM
Hi,
I seem to have a bizar problem:
I have a .HTML file with:
<script language="javascript" src="include.aspx"></script>
In the include.aspx (on load) I do:
Response.ClearContents();
Response.ContentType = "text/javascript";
Response.Write ("document.write ('hello world');");
Response.... more >>
Fire multiple events when AutoPostBack = True
Posted by John Oakes at 7/18/2004 2:37:01 PM
I have a TextBox with AutoPostBack = True. Often a user needs to click
directly from this control to a RadioButtonList. Because the TextBox
immediately posts back, the RadioButtonList selection doesn't get changed
and the user has to click it a second time. I would have the RadioButtonList
aut... more >>
Drop Down List within a Repeater
Posted by Timothy V at 7/18/2004 1:34:39 PM
Hi,
If i have an array of arrays (ie, array of int arrays), and i want to use a
repeater (for the array) that has a drop down list (for the int arrays), how
do I do it?
Thank you very much in advance,
Tim.
... more >>
dataset as xml to client
Posted by John Boers at 7/18/2004 1:01:48 PM
I have an aspx page that reads info from a database and puts in in a
dataset. Then an XML-file is created by a myDataset.WriteXml("myInfo.xml")
statement.
After that the XML-file must be read by an aspx-page that resides on
anaother server. I do that as follows
Dim reader as XmlTextReader... more >>
dataset to client as xml
Posted by John Boers at 7/18/2004 1:00:33 PM
Hello,
I have an aspx page that reads info from a database and puts in in a
dataset. Then an XML-file is created by a myDataset.WriteXml("myInfo.xml")
statement.
After that the XML-file must be read by an aspx-page that resides on
anaother server. I do that as follows
Dim reader as XmlTex... more >>
LoadViewState not firing when Control added with AddAt
Posted by Devin Fensterheim at 7/18/2004 11:48:01 AM
Does anyone know of an issue with a control's viewstate not persisting when dynamically adding custom controls to a web form using AddAt?
If a control is added to an HTML form directly using the HtmlForm's AddAt method (per the below code segment), then LoadViewState is never fired for the contro... more >>
What was used to create this?
Posted by Brett at 7/18/2004 9:10:01 AM
What was used to create this discussion group? Particularly the UI components?
Thanks,
Brett... more >>
How to render a piece if ASP.NET code into HTML?
Posted by Przemo at 7/18/2004 7:00:34 AM
Hi,
In classic ASP I was able to do something like:
<title><%=MyVariableWithTitle%></title>
How to do the same in ASP.NET using VB.NET?
thank you!
Przemo... more >>
custom column format for asp.net datagrid
Posted by adam NO[at]SPAM twv.org at 7/18/2004 3:19:03 AM
Hi I have a datagrid bound to a datareader. the datareader returns two columns authorId, and authorName.
How do i combine the data to render one column with the name of the author as a hyperlink.
The column is currently bound to the authorName field and
I have a DataFormatString of
"<a ... more >>
forms authentication: redirects for *.aspx pages only, not for other extensions, not for static content
Posted by www.MSmobiles.com at 7/18/2004 12:47:47 AM
Hi!
I am using something like this in web.config :
<authentication mode="Forms">
<forms name=".MSMOBILES_COM___COOKIE"
loginUrl="login.aspx"
protection="All"
timeout="30"
path="/">
<credentials passwordFormat="Clear">
... more >>
|