HI I am useing 2008 server and from that i am not be able to send mail ..Wchich setting i need to set?
jintalPatel
Posts
-
New Server Mail Config Problem -
Problem with Running Classic ASP page in VS2005Hi I don't know how to run asp page in Vs2005.I have one application which contain some asp page and i want to do some modification in that page and want to test or debug. how it possible ..or on wchich othe platform i can debug my asp page Thanks
-
I want to open any audio file in my pageHi I want to open a audio file on linkbutton click event...i boud the file name on linkbutton when we press on the button i actally want to play that sound file.my linkbutton is in datagrid.and audio file is xyz.osf formate.. Please help me
-
While Loop Problem in SQLDECLARE @spot SMALLINT DECLARE @str VARCHAR(8000) DECLARE @strQuery nVARCHAR(1000) DECLARE @sql VARCHAR(8000) DECLARE @cslist VARCHAR(8000) declare @Count int set @Count=0 set @cslist='CallLog1230,CallLog2230' MainLoop: WHILE @cslist <> '' BEGIN SET @spot = CHARINDEX(',', @cslist) print @spot IF @spot>0 BEGIN SET @str = CAST(LEFT(@cslist, @spot-1) AS varchar) SET @cslist = RIGHT(@cslist, LEN(@cslist)-@spot) print @cslist goto InComing goto OutGoing END ELSE BEGIN SET @str = CAST(@cslist AS varchar) SET @cslist = '' print @str if(@Count=0) Begin set @Count=1 goto InComing goto OutGoing End Else goto EndLoop END End InComing: Begin print 'IN' print @str End OutGoing: Begin print 'OUT' print @str goto MainLoop End EndLoop: return I am not return from the While loop Please help me to find where i am wrong
-
Javascript Textbox ProblemWhen i set the textbox value to "" but it still take the what ever value set by server side previously
-
Problem when try to get value of text box in javascriptThanks
-
Problem when try to get value of text box in javascriptThanks It works
-
Problem when try to get value of text box in javascripti want to get text box value in my javascript function but my textbox visible=flase so i am not getting value in my function. Help ME
-
Javascript : Not Set the value at server sideif(text=="Sick" || text=="AWOL" || text=="Absent") { document.getElementById("ctl00$ContentPlaceHolder1$txtReason").value = "" ; document.getElementById("ctl00$ContentPlaceHolder1$txtReason").focus(); document.getElementById("ctl00_ContentPlaceHolder1_cmbHours").value = "0" ; document.getElementById("ctl00_ContentPlaceHolder1_cmbminuts").value = "0" ; document.getElementById("ctl00_ContentPlaceHolder1_cmboutHour").value = "0" ; document.getElementById("ctl00_ContentPlaceHolder1_cmboutminutes").value = "0" ; document.getElementById("ctl00_ContentPlaceHolder1_txtdinner").value = "0" ; } using this code my textbox value is chaged but my problem is when i try to get the textbox value at server side it show me the older value insted of "0"
-
I am Getting the error likeThanks For Reply.. But as i know the google is best serch engine ..i have all ready use that ...after all search i have post this question
-
I am Getting the error likeI am Getting the error like "sys.webforms.pagerequestmanagerparsererrorexception" Please help me.
-
Javascript Print Function is not workingfunction PrintPage() { printWindow = window.open("../xyz.pdf"); printWindow.print() } it's open the page but not print the page
-
loading a simple text file in iframefunction setframeOriginal(url) { var eyeframe; eyeframe = document.getElementById('RSIFrame'); eyeframe.src='You Path'; } ;</x-turndown>
-
Page.ClientScript.RegisterClientScriptBlock Not Working in my pageI tried making last argument false as well but it still not giving the popup block
-
Page.ClientScript.RegisterClientScriptBlock Not Working in my pageHi In my page i write like this: Page.ClientScript.RegisterClientScriptBlock(this.GetType(),"Msg","<script>alert('Employee information is not valid...');</script>",true); But no popup window open ..is this right code?