|
Please don't cross post.
Regards,
Arun Kumar.A
|
|
|
|
|
And please try to write something useful as subject.
Every thread that you have created have the same useless subject. "Help please" does nothing to distinguish the thread from other threads, and says absolutely nothing about the real subject of the thread.
---
single minded; short sighted; long gone;
|
|
|
|
|
i want to make a function that deal with contact form of web site i made
|
|
|
|
|
meromeroo wrote: i want to make a function that deal with contact form of web site i made
And how do you want to "deal with" it?
---
single minded; short sighted; long gone;
|
|
|
|
|
meromeroo wrote: function that deal with contact
pls be more specific...
<< >>
|
|
|
|
|
How to do updation of two tables in gridview?(asp.net2/c#)
|
|
|
|
|
Hi there,
Tell you what. That's a very good question. I have a clue about how you can do it. Maybe you can try it out. Here is how you do it.
Edit the Gridview template so that you get all the columns you want to update. To actually update it you can have an "instead of" trigger or a stored procedure which updates the values in the two tables.
Hope that helps.......
You don't have to be AFRAID!
|
|
|
|
|
Thanks,
I am very new to this field and this is my first project. so can u send some examples or some article please
|
|
|
|
|
You can go to www.asp.net and download a lot of good videos to get started.
You don't have to be AFRAID!
|
|
|
|
|
|
Hello Friends,
Please have a look to this URL.
http://66.201.127.52/ClassifiedListing.aspx[^]
I am unable to trace to how to rectify this error, and its taking a toooooooooooo much of time to me.
Plz help .
Deepak Surana
|
|
|
|
|
You are trying to access an environment variable which you don't have access to. That's all I can say from the error message.
If you want to know something more, you have to explain what you are trying to do, and show how you are trying to do that by showing some of your code.
---
single minded; short sighted; long gone;
|
|
|
|
|
How can I add new values to checkboxlist control of ASP.NET?
I have done this by dropdown and listbox controls before but it's several days that I can't do this task.
Please help me everyone.
|
|
|
|
|
|
Hi sir!!
I said in JAVASCRIPT.
|
|
|
|
|
You are right!
Here is a JavaScript sample.
Markup Part:
=========
<head runat="server">
<script type="text/javascript">
function AddMoreItems()
{
var newNode = null;
var objList = document.getElementById('CheckBoxList1');
if (objList != null)
{
var tblBody = objList.getElementsByTagName('TBODY');
newNode = tblBody[0].rows[tblBody[0].rows.length-1].cloneNode(true);
if (newNode != null)
tblBody[0].appendChild(newNode);
}
return false;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:CheckBoxList ID="CheckBoxList1" runat="server">
</asp:CheckBoxList>
<asp:Button runat="server" Text="Add" ID="submitBtn" />
</div>
</form>
</body>
Code Behind Part:
=============
protected void Page_Load(object sender, EventArgs e)
{
CheckBoxList1.Items.Add(new ListItem("Hello"));
CheckBoxList1.Items.Add(new ListItem("Welcome"));
submitBtn.Attributes.Add("onclick", "return AddMoreItems();");
}
I hope you got some idea!
Enjoy!
P.Anbuselvan
IT Consultant
Emirates Group IT, UAE
|
|
|
|
|
Hi,
You can add ListItem to CheckBoxList in Javascript:
<asp:checkboxlist id="Check1"
="" repeatlayout="flow" runat="server">
<asp:listitem>Item 1
<asp:listitem>Item 2
<asp:listitem>Item 3
<asp:listitem>Item 4
<asp:listitem>Item 5
<asp:listitem>Item 6
Regards,
Blumen
|
|
|
|
|
|
Hi there,
I am creating a web application which uses the login controls in Visual Studio.
This application has an administrator who has the rights to change anybody's password. How can I do this in the code. I mean how do I access the password of another user.
Thanks for all your time and help.
You don't have to be AFRAID!
|
|
|
|
|
Hi,
U can get password for another user the same way as u get it for the administrator to authenticate him when he logs in the system.
Thanks and Regards,
Chetan Ranpariya
|
|
|
|
|
Hi there,
I am creating a web-application which has a lot of data in it.
Which option would be better.
1. Using the wizards in ASP.NET or
2. Writing a middle tier DBConnect class to handle the ADO.NET.
Thank you.
You don't have to be AFRAID!
|
|
|
|
|
Hi,
Using middle tier class is better.
Regards,
Blumen
|
|
|
|
|
Hello, i want someone to help me, i want to create a confirmation dialg with asp.net
how can i do
thinks
|
|
|
|
|
hi there,
you might search for window.confirm(...) javascript method to see how to use it
<< >>
|
|
|
|
|
how to edit the values with in the datagrid.
means...
when we r clicking edit button in grid then that particular row automatically have to change as textboxes or any but it has to editable.
reply me...
thanks.
|
|
|
|