|
my mail code is as follows-------------
$message = "
$mail1_invitationsent $mail2_invitationsent |
| $mail3_invitationsent ($college_name) |
| | $mail_contents | | | | $mail4_invitationsent | | $mail5_invitationsent | | |
|
|
|
";
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
$headers .= 'From: xxxxx<community@xxxx.com>' . "\r\n";
mail($to, $subject, $message, $headers);
----------------------------- end of code-----------------------
some variables are used to change language
and
$mail_contents is the vatiable of mail contents which is partly from database and partyt from use input.
Plz. solve my prob
Bharat Bhusanam
|
|
|
|
|
Hi all,
I think this is a newbee question ! Sorry
I have a php web page that is working perfect !!!
However, I need it to be displayed inside a white square (22cm by 15cm) on a black background. This square needs to be centre aligned.
I think this is a CSS thing but I am new to all this so if any kind person could help me with this then I would be VERY grateful !!!
Thanks Lots
John
|
|
|
|
|
Try check my website www.boutiqueboneka.com. I think it has what you want.
|
|
|
|
|
|
I have a web page,in that on click of a button a modal pop up window appears,im handling that button event in javascript "onclick" property.
My popup window contains a panel,inside that panel there are ajax controls like drop down list and text boxes.
My problem is i want to set focus to that drop down list in the panel on click of the button.
Can anybody help me..
Dream it to achieve it
|
|
|
|
|
You can use document.getElementById(<id> ).focus() to set the focus to any (enabled) control you like.
Wout Louwers
|
|
|
|
|
the code you had sent will not work for ajax controls,i tried it before raising the issue
Dream it to achieve it
|
|
|
|
|
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
|
|
|
|