|
I recommend looking at your HTML to help work out issues like this. As Brad said, there is no such thing as an AJAX control. It plain does not exist. All that exists, is HTML, and Javascript that interacts with the HTML.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
There is no such thing as an Ajax control. You should use the normal Javascript/HTML methods to set focus.
Brad
Australian
- peterchen on "Who has the worst keyboard"
Keyboard? Ha! I throw magnets over the RAM chips!
|
|
|
|
|
No.. im using user controls inside the panel..
Dream it to achieve it
|
|
|
|
|
Doesn't matter. If you're using a .NET control, you need to do two things:
1 - ask in the ASP.NET forum
2 - write the name of your control into your client side script, so you know what control name to look for, you can interact with it just the same, it's still HTML.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
can anyone recommend a book that talks about how to design with visual studio. I like the programmer features of visual studio but when I try to design a website with it is difficult.
Anyone know of any web sites with tutorials or any good books that shows you how to design with VS. I see all these great starter templates but I want to design a template my self and I find visual studio web design components are not accurate in layout and not user friendly at all.
It certainly isn't Dreamweaver which I am liking more and more now.
any suggestions?
thanks in advance
|
|
|
|
|
Hi Guys,
I have another problem. There's no way I can add an "Insert" functionality in my GridView. I can only add Edit, Delete and Select.
How can I add "Insert" command in GridView? Or is there another way of adding functionalities in ASP.net 2.0 GridView?
Or do you know some other way on doing it, is there any other webcontrol that has the complete functionalities?
I am stuck with this problem.
Thanks in advance Guys.
hifiger2004
|
|
|
|
|
Hi Guys,
I have a problem with asp.net 2.0
I am using different web controls such as Multiview, View, Updatepanel. And the scriptmanager is located on my Master page. And the Multiveiw, view, updatepanel are all inside the content.
Each view has a webcontrol's GridView and DetailsView. But why is it that when I'm going to copy one of the views and paste it the very bottom the multiview, it will disappear after I saved, closed, and open my project.
The content of the view that I copied was totally gone. I just don't know if what really happens if why it got disappear.
Thanks in advance Guys.
hifiger2004
|
|
|
|
|
In my asp form i need to add values to database table from a list box selection with comma delimeter, then i have to retrieve those values from the table and select them back in the selection box whatever values where selected before and saved to the data base, example:
this is the form list box:
---------------
|Big House |*
|Red cat |
|Parks |*
|Television |*
|Computer |
|Picture |
|--------------
now lets say three values were selected *
Big house
Parks
Television
What I need is save all three values to the same field in the database table with a commma between each one.
Big house,Parks,Television
|
|
|
|
|
I'm not having any luck finding instructions on what I'm looking for. If possible, I need to have a directory on a web server that points to another server. So for instance, I have Apache running on server ip 192.168.1.1 and I would have a directory like http://192.168.1.1/otherserver that would take you directly to 192.168.1.2. Is this possible? I'm not looking for a redirect script. I need the user to think they are still on the original server and not on the other server. Thank you.
|
|
|
|
|
Well there is two ways to do this:
A:
Redirect
B:
<html>
<title>First Frame Page</title>
<framset cols="100%">
<frame src="http://192.168.1.2" />
</frameset>
</html>
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
maybe there is another way...
You could configure the server in a way that it allows you to include the scripts?
Just an idea... Unfortunately I’m not that familiar with apache
Stef
|
|
|
|
|
Thank you for the reply, but I can't use a script in this case. Basically I don't want the user to know what computer they are connected to. If I use a redirect, all that will do is take the user to the second computer showing the IP address in the browser bar. I want the user to think they are still on the first server at all times.
|
|
|
|
|
Could you not use mod_rewrite for this? I've never tried doing it accross servers but you could have a RewriteCond that checks for the folder path and then a RewriteRule that passes the request to the other server without adding a redirect in (or even a physical folder for the path with a .htaccess in that just does the rewrite unconditionally). Hmm, doesn't sound hopeful but I'd give it a go.
|
|
|
|
|
Hello Friends,
I am trying to create same like codeproject discussion board ,
Could anyone help me or give some sample ,
thanks
|
|
|
|
|
You need to use a server platform (like ASP.NET) and a database (like SQL Server) to make a discussion board. It's not possible using only Javascript.
---
single minded; short sighted; long gone;
|
|
|
|
|
thanks,
yeh,I am using asp.net1.1 and sqlserver2000
you tell me how it's working and I need reply function how work
thanks
|
|
|
|
|
Hi, do you know where I can find the code for the cp discussion board or something like that?
|
|
|
|
|
you know means tell me ,
takecare
|
|
|
|
|
Check out the Battleaxe Forums[^].
----
It appears that everybody is under the impression that I approve of the documentation. You probably also blame Ken Burns for supporting slavery.
--Raymond Chen on MSDN
|
|
|
|
|
Hi Guys,
Have a good day.
I am using ASP.NET 2.0 with AJAX.
How can I pass the ItemKey from GridView1 to GridView2?
The GridView2 containts records for update which is the value of the ItemKey coming from GridView1.
Ho can this be done?
Thanks in advance.
hifiger2004
|
|
|
|
|
Hi All,
I have developed a web based application in ASP. I have deployed it in a machine in our local intranet. when i need to run the application i need to type the system name ,followed by the virtual directory name ( i.e http://system101/banking/login.asp )..
But my problem is i need a Intranet DNS for Direction to the path .ie. when type "bank.com" in the browser i need to load the application . can any one plz help me ..... thanks in advance..
If U Get Errors U Will Learn
If U Don't Get Errors U Have Learnt
|
|
|
|
|
how to get random values into global function in flash8
|
|
|
|
|
hello
maybe this helps: Math.round(Math.random());
Stef
Stef
|
|
|
|
|
|
if you want random numbers more than a single number then you can use:
var test:Number;
var str:String;
str = '';
// Loop for the count of the string that how long you want random number(i.e. 01234 or 98765 etc)
for(i = 0; i < 5; i++)
{
test = random(9); //will reurn random from 0 to 9
str += test.toString();
}
trace("Number String = " + str);
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|