all groups > asp.net > june 2005 > threads for thursday june 9
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
Does CompareValidator work for the date in dd-mmm-yyyy format?
Posted by CyberLotus at 6/9/2005 11:01:01 PM
Hi,
I wish to validate the date a user has entered against the format
dd-mmm-yyyy
using the CompareValidator, but it does not work.
Does anybody have a simple solution please?
Many thanks in advance.
Regards,
Cyberlotus
... more >>
HttpWebRequest: Processing synchronous or asynchronous
Posted by Sojwal Chitnis at 6/9/2005 10:46:20 PM
Hi,
We have a asp.net web application in which we are making HTTP requests to a
remote
web server (CGI) & get response in form of XML data. We are using
HttpWebRequest
object to post the request. In case of concurrent users using our web
application:
1. On a page if there are multiple such ... more >>
OnPreRender ??? What is ?
Posted by Daniel Groh at 6/9/2005 9:49:29 PM
Hi, i'd like to know more abou this event, i tryed to found in MSDN but the
explanation is null for me...is there some explanation when and how should i
use it ?
... more >>
somebody help me answer this?
Posted by Luis Esteban Valencia at 6/9/2005 9:47:32 PM
You are creating an ASP.NET application for the Widget Company. An earlier
version of the application uses ActiveX components that are written in
Visual Basic 6.0. The new ASP.NET application will continue to use the
ActiveX components.
You want the marshaling of data between your ASP.NET a... more >>
Munging URLs to store data
Posted by jmensch NO[at]SPAM shaw.ca at 6/9/2005 9:42:18 PM
Hello. I'm a reasonably new ASP.NET programmer
with no prior ASP or web development experience,
but a lot of general programming experience. I'm
using Visual Web Developer Beta Express 2005.
I'm trying to find a way to store data in the
URL of my pages. I know that SessionState does
this... more >>
How to solve this " problem
Posted by Shapper at 6/9/2005 8:51:00 PM
Hello,
I am accessing a value in a XML value:
news.Load(Server.MapPath("xml/ news.rss"))
newslabel.Text = CType(news.SelectSingleNode("rss version="2.0
"/channel/title").InnerText, String)
The XML file:
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>Ne... more >>
PostBack problem
Posted by Daniel Groh at 6/9/2005 8:12:07 PM
I have two controls in my webform, BUT....one comes from a user control and
the other comes from another user control, both with post back!
How can i work just with one PostBack ?
if(PostPack from button2){ //How can i accomplish that correctly ?
do nothing //Just do with post back of bu... more >>
<Head>Tag
Posted by Sam Samnah at 6/9/2005 7:13:22 PM
Ok I have a bit of a problem with a Server control I am building. I need to
write a client-side Javascript block between the open and closing Head tag.
I have tried the following methods:
first attempt
Page.Response.AppendHeader(someStringBuilder);
result:
Returned nothing on the page.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Setting the navigate URL
Posted by Arjen at 6/9/2005 7:02:18 PM
Hi,
How can I set the navigate URL with parameter without extra code?
I have now this:
NavigateUrl="~/test2.aspx?ID=" + <%# Bind("Id") %>
There must be a way to do this with a string function....
Thanks for help!
... more >>
How to Stop a Function?
Posted by Shapper at 6/9/2005 6:36:27 PM
Hello,
Is there a way to stop a function? Something like:
Sub My Function()
...
Stop This Function
...
End Sub
Thanks,
Miguel
... more >>
2.0 App-Code Folder Support for 'Code-Behind'
Posted by clintonG at 6/9/2005 6:30:49 PM
I've posted to the forums but we're not making progress there yet so maybe,
just maybe somebody has this figured out...
When VS2005 creates a new Web Form with code placed in a separate file we
get the following:
WebForm1.aspx
WebForm1.aspx.cs
Both files are in the root of the projec... more >>
Caching Objects
Posted by matthias s. at 6/9/2005 6:17:02 PM
Hi there,
I'm writing a class which should hold some state information of my web
app. The class should be placed in the Cache for performance reasons.
But when the class gets removed from the cache (because its time has
expired), I'd like to persist the current state of the object to the
... more >>
String Question
Posted by Shapper at 6/9/2005 6:08:46 PM
Hello,
I have this:
Dim news As New XmlDocument()
news.Load(Server.MapPath("xml/news.rss"))
Dim x As String = news.SelectSingleNode("editor/name").InnerText
lrsslabel.Text = x
It works. However when I replace last 2 lines as follow it doesn't work:
lrsslabel.Text = news.SelectSing... more >>
Asynchronous Call
Posted by Shimon Sim at 6/9/2005 6:03:58 PM
I am working with ASP.NEt application and need to create something like
notification module. Application passes a event information and module
decides how to handle this event - who to notify and what information to
send.
The main issue is I don't want slow done main application because of ... more >>
Creating a "serverless" app...
Posted by Rlrcstr at 6/9/2005 5:46:40 PM
Is it possible to create an ASP application that can run on windows XP home
without being connected to a server?
I guess I need to know if XP Home has a web server component that supports
ASP .NET.
I see applications that use interfaces that appear to be web page type
interfaces, but are... more >>
How solve this IF Then problem?
Posted by Shapper at 6/9/2005 5:39:45 PM
Hello,
I need to load a XML file and call a function if it wasn't possible.
I have this:
Sub Build_RSS()
Dim news As New XmlDocument()
If news.Load("http://www.domain.com/news.rss") Then
' Do Actions
Else
Display_Error("File not Found")
End If
End Sub
However t... more >>
Why ASP.NET can not handle file contains ~ in its name? thanks!
Posted by davidw at 6/9/2005 5:37:23 PM
I found I can access static file in my IIS folder that have ~ in their file
name, but I have no way to let httphandler to handle such request, for
example, http://mydomain/test.aspx returns 401, but
http://mydomain/test~.aspx returns
File names for monitoring must have absolute paths, and no w... more >>
Difference between Page_Load and OnLoad
Posted by lbolognini NO[at]SPAM gmail.com at 6/9/2005 5:28:01 PM
Hi everybody,
sorry for the newbie question but I can't get the difference between
these two code snippets. Is it that one is a delegate (the first) and
that while the first ADDS behaviour the other completely rewrites it?
Thanks,
Lorenzo
public partial class AdminPage : Page
{
protect... more >>
Did I do this correctly? - Display resized image from DB.
Posted by Neo Geshel at 6/9/2005 5:20:22 PM
Greetings.
I am making an admin interface, which allows me to upload photos to an
access DB. The admin interface also needs to display the uploaded
photos, but only needs to show them at a maximum resolution of 100px per
side. All photos will be JPEG. Below is a showimage.aspx file that
a... more >>
Usercontrol Page_Load not firing.
Posted by Sosh at 6/9/2005 5:17:42 PM
Hi,
Could anybody suggest a reason why the Page_Load method is not happening
in a dynamically loaded user control? (All of the content from the ascx
is being displayed though).
Thanks... more >>
How to laod this file?
Posted by Shapper at 6/9/2005 5:11:12 PM
Hello,
How to load a XML file in a XML DOM Document?
Thanks,
Miguel
... more >>
adding html to body
Posted by Luis Esteban Valencia Muñoz at 6/9/2005 5:11:07 PM
I want to add HTML to a page inside the body tag without affecting what .net
1.1 is rendering as normal.
Specifically, I want to automatically add a standard header to every page
which would be read in from a file. I looked at using the
application_beginrequest in the global.asax but think I m... more >>
Session State stateserver or Sql Server
Posted by tshad at 6/9/2005 4:58:47 PM
I have been using the default session state (InProc) and have found that I
have been loosing my information after a period of time (normally 20
minutes).
Is there anyway to find out how much more time I have on a session?
If I do a refresh, does reset the session clock?
Do you have have... more >>
LDAP Query Help
Posted by sck10 at 6/9/2005 4:54:22 PM
Hello,
I am running the routine below and I am getting the following error at For
Each result In srcLDAP.FindAll.
System.Runtime.InteropServices.COMException. The requested authentication
method is not supported by the server.
Any help with this would be appreciated.
--
Thanks in adv... more >>
loading session variables in page title bar
Posted by Leon at 6/9/2005 4:46:24 PM
what my title will not load the user session values on first load, but will
load on page refresh?
code..
*html file..
<HTML>
<HEAD>
<title>
<asp:literal id="Title" runat="server"></asp:literal></title>
<asp:literal id="CSS" runat="server"></asp:literal>
.....
*code behind file... more >>
Label Width
Posted by jack-e at 6/9/2005 4:41:21 PM
Hi,
An easy on I'm guessing!
How do I restrict the length of a label? I have tried setting the width
to say 200px but if the user inputs a continuous line of characters
it's doesn't wrap.
Thanks in advance.
Jack
... more >>
Width of Label
Posted by jack-e at 6/9/2005 4:40:12 PM
Hi,
An easy on I'm guessing!
How do I restrict the length of a label? I have tried setting the width
to say 200px but if the user inputs a continuous line of characters
it's doesn't wrap.
Thanks in advance.
Jack
... more >>
asp.net button handler
Posted by Bob Weiner at 6/9/2005 4:27:51 PM
Using ASP.Net, can I create a button in a pop-up window which will, trigger
an event on the server, close its own window, and refesh the page which
initially spawned the pop-up?
bob
... more >>
Exception has been thrown by the target of an invocation....what is this?
Posted by darrel at 6/9/2005 3:34:42 PM
I've written a function that will upload a file. This sort of works. It
works sometimes, and then other times...namely when it tries to write to an
existing directory (but not always), I get this error:
Exception has been thrown by the target of an invocation.
Googling seems to indicate... more >>
Calendar - Event listings, large format
Posted by Brent at 6/9/2005 3:16:48 PM
Hi,
Before I start to build this from scratch, wanted to check if there are any
good free ones out there that I can add to my site. I want a calendar that
displays a large format events calendar, not just a date picker. Ability to
add events to calendar and view a month at a time, with first ... more >>
javascript datagrid events inside item template
Posted by Luis Esteban Valencia Muñoz at 6/9/2005 3:04:10 PM
I have a datagrid that displays editable text fields (2 different price
fields) and a checkbox in every row.
It has a "SaveChanges" button at the bottom, which, when pressed, looks at
every checkbox in the datagrid, if it is checked, it updates the
corresponding rows prices.
That works, no prob... more >>
PostBack after AddHandler
Posted by Luis Esteban Valencia Muñoz at 6/9/2005 3:02:36 PM
Have a dropdownlist created in my LoadMain() which is called from the
Page_load:
************************PAGE LOAD********************8Private Sub
Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
Handles MyBase.Load
Try
'Initialize.
Main.Se... more >>
Cannot use integrated security from a thread in ASP.Net/ Windows 2
Posted by Razvan at 6/9/2005 3:01:06 PM
This problem occurs in ASP.Net application, only on Windows 2000.
Everything works fine on Windows Server 2003.
Here is the scenario:
I configured the application to use impersonation and integrated security to
connect to the database.
These are the corresponding lines in web.config
<... more >>
QueryString's lifetime?
Posted by Nad at 6/9/2005 2:48:01 PM
Hello,
When I navigate to a page, say called Form1.aspx, with a QueryString, any
postbacks within Form1.aspx keeps the content of QueryString. However, when I
redirect Form1.aspx to itself the content of QueryString is lost. What is the
lifetime of QueryString?
Thank you.
... more >>
Take out last character from textbox or label
Posted by tshad at 6/9/2005 2:40:13 PM
I am trying to find the best way to delete the last character from a
textbox.
For example:
status.text = "full/part/"
I want to take out the trailing "/".
Thanks,
Tom
... more >>
ToolTip - controlling duration of display
Posted by Mike Salter at 6/9/2005 2:02:51 PM
Is there any way to control the tooltip of a control so that it doesn't
disappear so quickly? I know there are tooltip controls available, but I am
creating controls on the fly, and adding tooltip text to them from a db.
TIA
--
Mike
... more >>
Datagrid Paging
Posted by vinay at 6/9/2005 1:06:03 PM
I have a Datagrid with a Datasource set.
And i have Paging enabled.
My Q is
I am looking for a particular Record in the Datagrid which might be in any
page !
How to find the record and set the Particular page selected dynamically??
I tried it and it works, but sometimes i am in the ... more >>
set Expires tag for images?
Posted by Paul W at 6/9/2005 12:43:13 PM
Hi - I want to reduce the download time of various pages by setting the
'Expires' tag for various images to a future date (this will then stop the
browser from re-requesting these for each new session).
I'm hosting on a commercial service so I don't have direct access to IIS
configuration. ... more >>
if(blah) alert box else somethinge useful
Posted by John at 6/9/2005 12:20:01 PM
hey guys this may not be possible, but i have an if statement that checks to
see if a value returned by a sql query is null or not..if it is i execute the
right code if it has a value i need to tell the user about the problem. i was
thinking just an alert box, but i dont know how to do that fr... more >>
Sessions and iframes
Posted by Craig at 6/9/2005 12:02:04 PM
Say that I add an iframe to my asp.net page. Does the user interacting with
this iframe (say the iframe points to www.microsoft.com and the user is
clicking on links at microsoft.com through the ifram), does this keep the
session alive?... more >>
code continues after stop debugging
Posted by ENathan at 6/9/2005 11:42:33 AM
I have a public sub in a class that does something like:
If ValuesChanged() Then
UpdateDatabase
End If
ValuesChanged and UpdateDatabase are Private functions within the class.
My problem is, when I finish debugging ValuesChanged and click the stop
debugging button, it appears the cod... more >>
No two-way databinding
Posted by John Bailey at 6/9/2005 11:28:48 AM
I have a web page with a formview, and a multiview in the formview. When I
databind the values inside the multiview views, there is no option for
two-way databinding. The form populates fine, but when it calls the update
method, it calls it with no parameters.
Is there just no support for... more >>
container.dataitem cast throws exception
Posted by hsomob1999 NO[at]SPAM yahoo.com at 6/9/2005 11:25:24 AM
I have a class, lets call it Schmuck. It has 2 public properties Name
(string) and active (boolean). When I bind to a Repeater, like so:
<%#container.dataitem("Name")%> i get the following error: No default
datamember found for type Schmuck. The Schmucks are in a ArrayList.
When I use DataBinde... more >>
HttpWebRequest.GetResponse on POST returns 405 method not allowed
Posted by GlennLanier at 6/9/2005 11:14:55 AM
Hello, I've searched the forums and can't find an answer -- if it i
there, kindly point me in that direction.
I would like to simulate a browser POSTing a FORM and be able to pars
the response.
I have the following code in my Page_Load (litResponse is defined a
<ASP:Literal>):
string... more >>
PDF Letters
Posted by Cole at 6/9/2005 10:52:46 AM
Hi,
I have an ASP.NET program that sends e-mails with PDF attachments. The
program send the e-mail with attachments OK. Most of the recepients
receive the e-mail OK with the attachments. However, some recepients
recieve the e-mail with the PDF corrupted. They claim that the PDF
reader is inta... more >>
how to use another font on remote webserver
Posted by Milsnips at 6/9/2005 10:48:56 AM
hi there,
i am using shared hosting for a website, and want to use a custom font for
my website, located in a folder, but dont know how to dynamically load it.
Any code samples appreciated for asp.net (VB)..
thanks,
Paul
... more >>
Unexplained Application restarts
Posted by jeff29_b NO[at]SPAM yahoo.com at 6/9/2005 10:38:43 AM
I am trying to figure why my HttpApplication object is periodically
dropping out. I am running on windows 2003 with an app pool w3wp.exe
process. The perfmon for the process says that the process has been
running for 19 hours. But my applicaiton seems to have recycled. I
know this because I ... more >>
ASP.NET Performance
Posted by Stelios Skiathitis at 6/9/2005 10:37:49 AM
I've got an aspx page which registers 8 custom user controls.
Depending on the "go" request.querystring variable it determines which of
the eight controls will be shown.
When the page is accessed through internet it loads immediately (< 2 sec)
When it is accessed through the web or through vpn ... more >>
Format DataItem 'inline' as Currency/String?
Posted by D. Shane Fowlkes at 6/9/2005 10:07:25 AM
I have a DataItem in a Template that calls a Function to perform a
calculation. The Function returns a decimal value. Easy enough. It looks
like this:
<code>
<%# CalculateExpended(Container.DataItem("StaffID")) %>
</code>
So how exactly can I format this to come out as currency? I ca... more >>
Problem to Export in Excel data format
Posted by Alessandro at 6/9/2005 10:04:14 AM
Hi !
I have a table on an aspx page and i want to export its rows into an Excel
File, the script is
Page.Response.Clear()
Page.Response.ClearContent()
Page.Response.ClearHeaders()
Me.TBLexcel.RenderControl(oHTMLWriter)
Page.Response.Write("<html><head></head><body>")
Page.Response.Wri... more >>
data question (ASP.NET2.0 - C#)
Posted by Justin Rich at 6/9/2005 9:47:57 AM
I am making a fairly simple help desk program. when a new ticket is created
it is sent in to two tables.
TICKETS and CONVERSATIONS
the username, computer, topic and subject go in to TICKETS and the problem
description goes in to CONVERSATION
the problem is i need the TICKET_ID from the ... more >>
System.Diagnostics.Trace in ASP.NET- how not to IISRESET
Posted by Patrick at 6/9/2005 9:43:50 AM
When Tracing in ASP.NET, the IIS process (on IIs5.1) is locking on the Trace
file, and I can't read the trace file without restarting the IIS:
Even the following does NOT work (how could I fix this??):
System.Diagnostics.Trace.WriteLine(System.DateTime.Now.ToLongTimeString()+
"--" + dirExcep... more >>
Imports System.DirectoryServices Problem
Posted by sck10 at 6/9/2005 9:16:27 AM
Hello,
I am using ASP.NET 2 Beta 2.
When I tried to use Imports System.DirectoryServices I get the following
error:
Namespace or type specified in the imports System.DirectoryServices can not
be found.
Any help with this would be appreciated.
--
Thanks in advance,
sck10
... more >>
nGen
Posted by Mark at 6/9/2005 9:11:28 AM
I was hoping to use nGen to speed up the time taken for our web site to
start running. However, on the web we found this quote:
"NGen is not recommend for Asp.Net because the assemblies NGen produces
cannot be shared between App Domains"
I'm afraid I'm not sure what an App Domain is in th... more >>
Question on optimizing a piece of code
Posted by Diffident at 6/9/2005 9:09:04 AM
Hello All,
I need some help on optimizing a piece of code. Currently this is how we
retrieve our Oracle's connection string for executing all the queries in our
application.
public string GetOracleClientConnectionString()
{
string strConnectionString =
System.Configuration.Configura... more >>
Concurrent requests - driving me insane!
Posted by ipmccun NO[at]SPAM hotmail.com at 6/9/2005 8:51:02 AM
Hello all:
Perhaps someone can shed some light on this: I'm trying to create a
situation, while debugging, where a long running request (sleeps for
15s) and a short running request execute concurrently. Right now, no
matter what I do, it seems that they execute serially. I've verified
(by w... more >>
See "what's going on" when an "Error Creating Control" message is displayed
Posted by Ravi Ambros Wallau at 6/9/2005 8:50:06 AM
Hey guys:
What can I do when an "Error Creating Control" is displayed on the form
(instead of the control), and a tooltip indicating the error never is
displayed?
Is there some log, some hidden message, some entry in registry where a
log is created (or that enables a log, trace, dump... more >>
ImageMap + SQL Server + ASP.NET question...
Posted by Roy at 6/9/2005 8:44:03 AM
Ok,
I need your esteemed opinions please. Basically, what I want to do is
have a imagemap of the world wherein a user could zoom down to certain
regions and see info concerning that particular area. The info would be
pulled from sql server and would be very dynamic (info would change
daily).
... more >>
x,y position on datagrid
Posted by Eitan M at 6/9/2005 8:26:06 AM
Hello,
I am using datagrid.
For its event : ItemDataBound,
I want to know of each iteration this method is called,
what is the current column & row ?
Thanks :)
... more >>
Page load
Posted by Kim at 6/9/2005 8:26:03 AM
I would like to implement a webpage that would stay for a few seconds before
redirecting to another page.
I;ve tried to reserch on the MSDN library but couldn't find the appropriate
method for this purpose. What is the name of the method to use ?... more >>
Email verifacation
Posted by Amir Ghezelbash at 6/9/2005 8:11:09 AM
Hello every body I had a question
I am involved in a project where I need to verify the user's email
address by sending them an email and asking them to click on a link. now
I have done this but my link is human readable(example
validator.aspx?address="blah@blah.com") so any user can just t... more >>
Oracle Connections left open
Posted by N S S at 6/9/2005 7:56:01 AM
I am using Microsoft .NET Framework Data Provider for Oracle inside ASP.NET.
DBA complains that it is leaving connections open, & the number of
connections open keeps on increasing.
Any help on this appreciated... more >>
ASP.Net Book without builtin control use?
Posted by mjpmsa NO[at]SPAM yahoo.com at 6/9/2005 7:30:18 AM
Hello,
I've been using the O'Reilly book _Programming ASP.Net_ to learn
ASP.Net, but it frustrates me because all of the examples seem to use
the built in form controls. I write good, standards compliant HTML, I
understand forms, I write Javascript, and in short, I don't want to use
the ca... more >>
Datagrid Update Question
Posted by Davey P at 6/9/2005 7:08:08 AM
I have a datagrid that is made up of template columns(containing
dropdownlists and textboxes). I don't have an explicit edit mode, so values
in any/all of the rows can be changed at any time (as it is basically a data
entry screen). This leaves me with the problem that I need to capture ALL
... more >>
ASP.NET and mono
Posted by Coding Maniac at 6/9/2005 6:16:14 AM
Hello,
I have a ASP.NET application developed using VB.NET and running
perfectly well in Windows plataforms.
But I have a client that need to run this application in a linux
server.
What efforts I must take to put this ASP.NET application running on
linux? Will I need to rewrite the applicat... more >>
CRYSTAL Reports
Posted by Niggy at 6/9/2005 4:37:03 AM
I have a report and a web page with a CrystalReportViewer1 web control. I
get the following error:
CrystalDecisions.CrystalReports.Engine.LogOnException: Logon failed
Any ideas?... more >>
module to save file
Posted by JJ_377 NO[at]SPAM hotmail.com at 6/9/2005 3:36:25 AM
How would I use a module to save a file?
I can use the html input (type-file) in a webform to select a file and
then do a saveas on the request object's file.
However, I would like to be able to do this in a module, but the module
doesn't know anything about the request object in the webform... more >>
Checkbox in datagrid
Posted by sushil bogam via .NET 247 at 6/9/2005 1:13:10 AM
(Type your message here)
hi there please help me
with datagrid control
i want to add a checkbox in datagrid and also want to
trap the check bok check or click event
and also want to maintain the state of check box in pagging
using asp and vb dot net not C# please
-------------------------... more >>
Setting html button invisible
Posted by MW de Jager at 6/9/2005 12:00:00 AM
I'm trying to create an html page that will change dynamically. I need to
switch html -buttons between visible and invisible.
Is there any way I can do this with a script?
Regards
MW
... more >>
writing logs to a web page
Posted by at 6/9/2005 12:00:00 AM
Hi
I have a page that would upload a file and trigger some background process,
and during the execution of this process and / or upon completion of the
process. I would like to write some lines of information, such as no. of
record processed and no. of record failed or even a log saying "record... more >>
datagrid - do not refresh the contents in the grid
Posted by Eitan M at 6/9/2005 12:00:00 AM
Hello,
I have a datagrid object.
I have my own button on the grid,
but after I am doing something after clicking on the button,
I don't want to refresh the contents of the grid.
the contents of the lines on the grid are refreshed authomatically.
Can I avoid that refresh ?
Thanks :)
... more >>
ASP architecture
Posted by DwC at 6/9/2005 12:00:00 AM
Hey All,
I am fairly new to ASP and web apps and am having trouble working out
the architecture for the app we are currently working on. It allows a
user to log in and have access to pages that wouldn't be available
publicly. We also need to check the user id each time data is accessed
fr... more >>
Pager style
Posted by Arjen at 6/9/2005 12:00:00 AM
Hi,
How can I make the pager look smaller? (it's to height)
Making the font-size smaller does not help.
See the sample here:
http://beta.asp.net/QUICKSTART/aspnet/samples/data/GridViewMasterDetailsInsert_cs.aspx
Thanks!
... more >>
Render and get html from usercontrol
Posted by John Olsen at 6/9/2005 12:00:00 AM
Hi.
I`m building a small CMS, and want to add the possibility to include server
side code inside static html-strings that is stored in a database.
For e.g. in the string "<div><b>News></b><br>[Controls/News.ascx]</div>",
[Controls/News.ascx] should be replaced by the rendered html-outpu from... more >>
How Can I check a checkbox selected more than one times in datagrid ????
Posted by Alex Smith at 6/9/2005 12:00:00 AM
Hi Friends,
How can I check a checkbox selected more than one times in DataGrid ?
My First Priority is check with Client Side(Java Script), if it is not easy
than check server side (C#).
Thanks
Alex.
... more >>
How to create this ASP:Repeater?
Posted by Shapper at 6/9/2005 12:00:00 AM
Hello,
I am trying to get some data from a XML file into a repeater:
MyXML.ReadXml("http://www.mydomain.com/myXmlFile.xml")
MyRepeater.DataSource = MyXML
MyRepeater.DataBind()
My XML file is something like this:
<shop>
<name>...</name>
<email>...</email>
<item>
... more >>
How can I force Page_Load/PostBack on browser's back button click?
Posted by Amelyan at 6/9/2005 12:00:00 AM
ViewState of a unvisible control
Posted by ad at 6/9/2005 12:00:00 AM
When a web control's visible is set to false, is it's viewstate still
vailable?
... more >>
|