| • Gridview FindControl can't find my controls anymore!
Hello All,
I have an application and it was working fine till yesterday. Now the findcontrol in y gridview can't find the checkbox thats is in there.
The code is like above:
for (int i = 0; i < GridView2.Rows.Count; i++)
{
CheckBox cb2 =
(CheckBox)GridView2.Rows.FindControl("CheckBox2");
if (cb2.Checked)
{
if (TextBox1.Visible == true)
|
| • VS 2005 Debug Problem.. "Break point will not currently be h
Hi All,
Dose any one encounterd this VS2005 Debugging problem ever ?
I have 2 projects under one solution ... of which one is webservices and other is web application .... I have set web application as Startup project which currently has only one page in it.
I am accessing this service under same solution by adding "WEB REFERENCE".
When I try to dubug this
|
| • How to load an html document from server
Use AJAX??
Peter
-----Original Message-----
From: DotNetDevelopment
How to load an html document from server
If there is a way to load dynamically an html document from server into any html object(apart from iframe).
Many thanks in advance..
|
| • Apply style to HTML anchor tag in asp.net code-behind
That is one way that will work, Garrett, but isn't it simpler to just set the Class property of the needed HTML tag in the properties window
?
See the following topic in help : "Adding CSS Style Attributes in Design View"
|
| • Fwd: BOT problem
---------- Forwarded message ----------
From: Aman Sharma
Date: Jul 7, 2006 12:04 PM Subject: BOT problem To: DotNetDevelopment
I have to develop BOT in VS.NET2003.
Can anyone help me out in it that how to make that...?
|
| • BOT problem
Hi rohit...
Actually i have to make this application for my client.
So i wanted to know abt it.
Concept u r saying is fine but only if v make a self practice application.
Here I have to make an application for a big organization.
We cant even expect wat user will put in that application.
I mean to say combination making is impossible in it.
As i have given u one link.
you might have tried that.
In
|
| • convert an existing application to DLL
On 7/7/06, pavan kumar wrote:
hai this is pavan
i am new to .NET can any one give full details about the delegate class
in C#
i need article about C# delegate class and even delegate class.
regards
pavan
>
|
| • Hi Group, Require website for downloading .net samples
Hi,
The site you provided is related to web applications and I want samples for window application. OK
Bye,bye................
|
| • DataSet and Queries
yes, DataSet supports search data just like sql sentence.
----- Original Message -----
From: "Jamie Fraser"
To:
Sent: Thursday, July 06, 2006 7:44 PM Subject: Re: DataSet and Queries
You can do something like
Dataset.DataTable.Select or .Filter
On 06/07/06, Falcon wrote:
Hi all,
After I have filled a dataSet with lot of tables and data, I wonder if
there is a way to Query that
|
| • Onclick event
I think this is a case for client-side processing. So JavaScript is your answer, I guess.
ml
On the other hand, I hope you've thought this through. Making a text box behave like this would mean that a user couldn't amend an entry without deleting it. That would annoy me no end if I were a user.
HTH
Peter
-----Original Message-----
From: DotNetDevelopment
Onclick event
Hi,
When
|
| • Session Error ...
Got the solution ;)
Set EnableSession=true in WebMethod attribute
would enable the session state
Raj
|
| • Regarding Grid
hi,
thanks for ur suggestion..
but i m not taking data from database.
i am creating grid array of size 7 and than i am using link on some of cell. When cell will click than one window will appear...
And i need to concat that popup windows data with link. i.e.
Link(q1,q2,q3)
i think u got my problem.
|
| • Retrieving a Guid from a DataTable
This code worked for me just fine in VB.NET
Dim guidHH As New Guid
guidHH = r.Item("HHMachinesGUID")
.txtHHControlNum.Tag = guidHH
|
| • How to do a DNS query in .NET using a particular DNS server?
Well, it looks like the only way will be to write a DNS client myself.
:-(
Thanks,
Dhruva
|
| • DownLoad movie
But it will show a dialog box showing open,save and cancel.
i want that there should be only 2 options "Save and Cancel" .
On 7/5/06, Sankalp wrote:
I assume the movies will be stored on the same web server or maybe some
machine in the web farm. You need to just provide the path to the file
on the server and clicking on the link will download the file.
If on the same web server, then you
|
| • Server to server dat transfer
I had a project in the past where I had to transer data from one DB to
another (diferent schema) on two independent servers in the hight security.
I used IBM MQ Series to transfer data in XML file and is not any problem
with security. I didn't try but Windows MQ might work the same. If you need
more details, I can give to you.
V
From: "Rohitash Pandhi"
Reply-To: DotNetDevelopment
To: DotNe
|
| • using grid
hi all,
i am using grid array but with this gridarray I am not getting the properties like
.rowcount,.row,columncount...etc please help me...
|
| • Querying Non Active Directory LDAP Server
Hello,
I'm trying to query a non Active Directory LDAP server via ASP.NET. I have used System.DirectoryServices to query my domain's LDAP server before but I cannot successfully use it to connect to the non AD on the main campus. I have found System.DirectoryServices.Protocols.LDAPConnection but don't know how to correctly use it. The code examples I have found online utilize a Novell classes so
|
| • Development Environment
Hi,
I am trying to setup a development environment for a Visual Studio .Net project. I want to develop the app on a remote server. Can anyone tell me what I need to do this using Visual Studio? Thanks.
|
| • Inheriting Classes
I'm actually inheriting from the .NET framework, so I don't have any control over the base class. But I'll note that for when I inherit from my own classes.
Thanks
|
| • datagrid
SeNa wrote:
Hi
I want to delete multile records from datagrid by selecting check
boxes
as template column and select whatever i want
Write code.
Response.Write("Take a hike");
|
| • Display text in a password text box
I have just enabled autopostback property of username textbox to true. Then in page_load I have written code as if postback is true then password textboxmode has to be changed to password type.
Regards,
Sunil
On 7/3/06, Cerebrus wrote:
Huh ? How did you do it ?
>
|
| • PRoblem with events
errr... Not to sound ignorant, but what in God's name is a "dynamic vector" ? ;-)
I think you're talking about an array of MenuItems.
The Click event has a sender parameter that will tell you the item that generated the event. It is of type Object. You can cast it to MenuItem to get the array member which was clicked. Depending on that, you can execute the relevant actions.
|
| • Array problem
Hi zombek,
I wrote a reply, but I don't see it, so here goes again:
This line
.State == Square.State.OCCUPIED){...}
is looking for a static property on the Square class, but cannot see it. How is it defined?
Bort
zombek wrote:
Hi.
I have a multidimensional array of "Square" objects:
private Square _board;
In the constructor of the class which _board is a member I have the
foll
|
| • Chat in Gmail
For Security they are using socket profection what we call as SSL. I know only this. that is what the URL starts with "https" take look on the gmail url.
ie., "Secure Socket Layer"
Naresh Kumar
On 7/1/06, ena2413 wrote:
Hej,
I wonder what are the technologies used to integrate the one click chat
function in gmail.
Can any one help to find the technologies or code?
BR
Sarker
>
|
| • password field
Hi David,
There is an option in the properties window of the text box, where
you can find an option called password character. Just click on that
property and enter either ' * ' or other password character you want.
This will mask the text box while you run the program.
Hi
I am wanting to use a TextBox as a password field that masks the
password.
How do I do this?
cheers david
|
| • Create popup window and return selection to first window
I think use javascript it would better. You can combine run at server and javascript. Anyone can help?
|
| • Make a string upper case or lower case
Great thanks to helmet2.
@legion : I think we should think object oriented now.. using classic visual basic style functions we will out of .NET OOP concept
|
| • Problem with message box
@Doremi, thank you for your great reply. I have learn much now.
I think for simple one I should use: MessageBox.Show (String, String)
|