|
I have been able to save time with a better version GridViewEx from www.MyCustomControls.com...there is a lot of precise documentation there as well on how to do everything you need, plus it's super economical
|
|
|
|
|
hey thanks
but i can not make find the example that actually i want..
i want to add new rows in gridview that is ajax supported
and also in that gridview columns i want texbox as well as dropdownlist
thanks
|
|
|
|
|
try to make Datatable as Static and see whether this works for u or not.
Amit Agarwal
|
|
|
|
|
hey amit
i want to addnew row or u can say that empty grid with some rows.
i want to add new rows in gridview that is ajax supported
and also in that gridview columns i want texbox as well as dropdownlist
but i can not find better solution
thanks
|
|
|
|
|
i m using ASP.NET with C# (.net 2005, 2.0 framework)
i m more interest to read and practice WEB SERVICE concepts and willing to create simple GUI applications... where can i find these things?
i searched in google.but the HELLO WORLD example only coming........ help me
|
|
|
|
|
If you learn how to use the hello world example, you don't find it hard to create another WS method. Also MSDN has many articles on this subject.
|
|
|
|
|
|
server date and system is same are not...
how to find the server date in .net with c#
|
|
|
|
|
Stop spamming.
Apurva Kaushal
|
|
|
|
|
Repeating the same question over and over again won't help you get an answer
Paul Marfleet
"No, his mind is not for rent
To any God or government"
Tom Sawyer - Rush
|
|
|
|
|
You have also been asked not to use the subject "question". Every single one of yourposts on CP have used this subject 
|
|
|
|
|
Your website runs on a webserver. So if the website is running and asks for the System.DateTime it asks the time of the server the webserver is running on.
|
|
|
|
|
nithydurai wrote: server date and system is same are not...
Absurd or incorrectly phrased question.
nithydurai wrote: how to find the server date in .net with c#
DateTime.Now.ToString()
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson
|
|
|
|
|
Hi
I have created a webservice,am trying to call that in client side of my application.
I am unable to connect webservice with my application..
Can anyone help me out in solving this issue.
Thanks in advance..
|
|
|
|
|
If you want to call the web service through javascript then you can take help from this[^] article:
Apurva Kaushal
|
|
|
|
|
i created webservice and i failing in calling that webservice in client side...
please can you help me out in detail
|
|
|
|
|
shru_09 wrote: i created webservice and i failing in calling that webservice in client side...
Are to trying to consume the web service in client side.
Apurva Kaushal
|
|
|
|
|
|
Have you gone through the article whose link I have given you earlier?
Apurva Kaushal
|
|
|
|
|
problem with this code snippet
init(){
service.useService("http://localhost/CursoAspNetWebService/Service1.asmx?WSDL",_
"Service1");
}
|
|
|
|
|
What is the problem you are getting on this? Any error message?
Apurva Kaushal
|
|
|
|
|
while invoking web service in application
function callService()
{
Samples.AspNet.Service.sum();
}
Here Service is my webservice and sum is the function in it..
while running am getting error like "Sample" is undifined..
|
|
|
|
|
shru_09 wrote: i failing in calling that webservice in client side...
What is the error? What difficulty are you running into?
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson
|
|
|
|
|
|
Hey
I have the following code
for (int x = 0; x < GridView4.Rows.Count; x++)
{
GridViewRow row = GridView4.Rows[x];
bool isCheckedIgnore = ((CheckBox)row.FindControl("chkIgnoreItem")).Checked;
if (isCheckedIgnore == true)
<b>now what it should do is perform an action when isCheckedComponentIgnore is false</b>
but it doesnt do that, the interesting thing is, is that the chkIgnoreitem is a column in a gridview which was ticked or unticked depending on a field in a database, I recently changed the field from format 1 or 0 to Y or N
does anyone know why this wouldn't work?
thanks! 
|
|
|
|