|
Perhaps me describing a problem, in detail, I couldn't solve on my own after hours of trying, on a community help forum, is an implicit question? I mean I'm not describing the problem to help others introduce it to their own systems, and I don't like ending with the default question of "What is wrong?"
|
|
|
|
|
I have been having similar problems, would appreciate any help!
|
|
|
|
|
Some of the stuff you mention doesn't make full sense to me, but I like to use Fiddler when working with network traffic. That way I can analyze exactly what would be sent/received in a typical scenario and compare it to what I am sending/receiving from code.
Visual Studio is an excellent GUIIDE.
|
|
|
|
|
Hiiiiiiii to all
any one can tell that how to make a page like this http://mobile.domainname.com in details
what the procedure to do this......
rizvan sivally
|
|
|
|
|
sheemap wrote: any one can tell that how to make a page like this http://mobile.domainname.com in details
Probably, but why should they?
sheemap wrote: what the procedure to do this......
buy a book and learn.
The idea is you ask a specific question and get an answer. Nobody is going to do your work for you.
Bob
Ashfield Consultants Ltd
Proud to be a 2009 Code Project MVP
|
|
|
|
|
Enroll to a school and study web page designing...for you to learn more about it. 
|
|
|
|
|
sheemap wrote: how to make a page like this http://mobile.domainname.com
Write code.
“Follow your bliss.” – Joseph Campbell
|
|
|
|
|
Hi,
Is it unusual for a web method to have an "out" parameter? If so, why?
Thanks.
modified on Monday, October 19, 2009 1:41 PM
|
|
|
|
|
hiiiiiii tom all
any one can tell what is default user name and password on server for database sql server
rizvan sivally
|
|
|
|
|
it is set by the person who set it up. your best bet is to ask them for it.
|
|
|
|
|
Unlike Oracle where it uses scott/tiger, as Marc says, SQL Server has no default. I don't even think you can use a blank password for the sa account.
only two letters away from being an asset
|
|
|
|
|
sheemap wrote: any one can tell what is default user name and password on server for database sql server
Nothing default with SQL Server. You can set it during installation of SQL Server which would be on SQL Server Authentication Mode. You can also select the Windows Authentication mode.
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
Hi All,
I want accordion control binds by using xml file to using in website page.
i'm using asp.net 2005, C# language.
Please any one help me.
Thank you
Abdullah Abdelhay
|
|
|
|
|
|
Can any body tell me how to send an email to some fixed email address(i.e to the owner of the site) just by collecting message and email address of the sender?
Thank you.
|
|
|
|
|
CoderForEver wrote: Can any body tell me how to send an email to some fixed email address(i.e to the owner of the site) just by collecting message and email address of the sender?
Ther is an answer right here[^] just a few messages down!
|
|
|
|
|
I also posted a similar reply in the PHP section...
|
|
|
|
|
Hey friends I am developing web page for some music production. What I wanted to ask is, there are a lot of links for a lot of lyrics. If I put the lyrics with their file name and when the user presses the link it reads the file and displays on a new page. But this is really bad(too slow). So I decided to do like CODEPROJECT's site did. i.e when we click one question(or answer) on a thread it display the message @ that page with in a fraction of mili second. So can any body help me how to do that so that I can display the lyrics next to the song as CodeProject's thread did?
I hope I will get some helps soon. Thank you
modified on Monday, October 19, 2009 12:28 AM
|
|
|
|
|
I would like to pull league and tournament statistics from the EA sports servers. How would I go about trying this? The information is there as it is displayed on the X-Box, so I know it is passed somehow. Has anyone done this or know where to start?
|
|
|
|
|
If you know the URL to the page that displays the statistics, you could write an applicaiton that retrieves the entire page, then you would parse through the HTML to get the data you are looking for.
My company blocks "sports" websites, so I can't even look at it.
|
|
|
|
|
Hi everybody and thanks for reading my post, well my problem is that i have a datagrid in a .net application, one cell shows datetime values and i need that when that cell enters in edit mode the user picks a date from something like a datetimepicker, i found many ways over all internet but all ways are with a link and another page i need just to show the control as it was invisible and just toggle it to visible not in another page, any link to read please or ideas? :S...
|
|
|
|
|
So I am a web designer. I design layouts for other people, but don't do any of the server side scripting.
I am trying to set up a website and all I want is a simple HTML form that will record a user's Name, Email Address, and Phone Number. I've been searching through tutorials for the easiest way to do this. I don't want that info to go to a database, I just want to to automatically email it to me. I don't want it to open up a "mailto" script and use the individuals email account, I think there's a way to set it up using PHP or ASP or something.
Remember, I have no database experience, but I know my server can host them.
Ideas? Can someone give me a simple php code or something that will email me when someone fills out my form? Or am I going to have to set up a database and stuff like that.
Thx guys,
Benji
|
|
|
|
|
Here is a piece of ASP.net code that you could use to send an email.
Private Sub MailIt(ByVal toUser As String, ByVal fromUser As String, ByVal subj As String, ByVal sBody As String)<br />
Try<br />
Dim mm As New MailMessage(fromUser, toUser)<br />
<br />
mm.Subject = subj<br />
mm.Body = sBody<br />
mm.IsBodyHtml = True<br />
<br />
' Create the SmtpClient object<br />
Dim smtp As New SmtpClient<br />
<br />
' Send the MailMessage (will use the Web.config settings)<br />
smtp.Send(mm)<br />
Catch ex As Exception<br />
' Put some error handling code here<br />
End Try<br />
<br />
End Sub
In your web.config, you put the details of your email server ...
<system.net>
<mailSettings>
<smtp>
<network host="myMailServer.com" port="25" userName="myUser" password="myPassword"/>
</smtp>
</mailSettings>
</system.net>
|
|
|
|
|
Thanks! I also got a PHP response that I'm trying.
Benji
|
|
|
|
|
Hey budy can u pass me the php code for sending am email?
Thanks in advance
|
|
|
|