Hi,i have created my asp.net mobile application and now i want to access it or rather deploy it on Actual mobile how should i do this? GIRISH
ShuklaGirish
Posts
-
Deploying asp.net mobile application on mobile -
Getting List of IP'Addressthanks for ur reply.
-
Getting List of IP'AddressHi, i have created one Chat application where user can send message to other users on the network but right now i am specifying the ip address manually. So,i want to get Ip asdress of all the machines which are on network. Pls send me the code if u know this. Girish
-
Import export outlook contactsHi, thanks for yr replu but I want to do it in asp.net,not in windows application.
-
Import export outlook contactsHi, i want to create one option for importa nd export outlook contacts from my asp.net web page.One of the way to retrive the contacts is, MyOutlook.Application oApp = new MyOutlook.Application(); oApp.AnswerWizard.ClearFileList(); oApp.ActiveWindow(); MyOutlook.MAPIFolder oContacts = (MyOutlook.MAPIFolder)oApp.Application.ActiveExplorer().Session.GetDefaultFolder(MyOutlook.OlDefaultFolders.olFolderContacts); foreach (MyOutlook.ContactItem oContact in oContacts.Items) { Response.Write(oContact.Email1DisplayName); } How should i export the data to outlook. Pls help me if u know anything related to this. Thanks. GIRISH
-
DataGrid problem in asp.netHi, I am having one datagrid which displayes data from one if the tables.Now i want when yser clicks on edit only the last columns should become editable and rest should be readonly,I am using run-time bidning,So how it is possible? GIRISH
-
Problem using dataset in vb.netthank u very much, my problem gets solved. thanks alot. GIRISH
-
Problem using dataset in vb.netHi, thnx for ut reply.I am using Ms-Access 2003. I am showing u the code, this is the code i am using to update the data, Dim res As Integer = executeDML("update schedule set [date]='" & txtdate.Text & "',[vehno]='" & ComboBox1.SelectedValue & "',[from]='" & txtfrom.Text & "',[from_time]='" & txtfromtime.Text & "',[to]='" & txtto.Text & "',[to_time]='" & txttotime.Text & "',[driver]='" & txtdriver.Text & "',[remarks]='" + txtremarks.Text & "' where [id]=" & scheduleid) If res > 0 Then MsgBox("Record Updated Successfully!!") Else MsgBox("Error while Updating Record!!") End If executedml is function defined in module which is, Public Function executeDML(ByVal command As String) As Integer Try com.CommandText = command com.Connection = con makeConnection() rs = com.ExecuteNonQuery() closeConnection() Return rs Catch ex As Exception If schedulecode = True Then MsgBox("This vehicle is already at booked at spcified time") Else MsgBox(ex.Message) End If End Try End Function i have degug the code also everything runs properly. So,wt could be the problem?
-
Problem using dataset in vb.netI have created one project which is working fine,but there is one big problem,i.e. when we add, modify or delete records it gets properly updated in the dataset as well as in the dtabase.I close the project and check the database it sores data properly but when i re-execute the project data in the database gets lost(menas database tables becomes empty).Et could be the reason. GIRISH
-
Configuration ErrorAdd the reference of rystalDecisions.CrystalReports.Engine on the server machine,if u r using setup file then add the same dll in the prerequisites of he setup project. Bust of luck.
-
Login Control in asp.netHi, i want to change the default dayabase for login control as bydefault it uses Sqlserver 2005 database,But i want to use my own ms-acess database. how it is possible???? Thnaks for ur help. GIRISH
-
Unable to run asp.net page on IIS serveri had tried to run this command but it gives me some errors,which are stored in the log file and the main error is, InstallInfSections failed with HRESULT 80070005: 'Access is denied. '
-
Unable to run asp.net page on IIS serverHi,i have created one website on local system which is running fine.now when i am trying to host the same website on IIS it is giving me error which is, CS0016: Could not write to output file 'e:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\websetup(travell)\17db5c73\928a41bd\App_global.asax.svcma0h6.dll' -- 'Access is denied' What could be the reason. GIRISH
-
Current path of the crystal report,hi,i have created one project its working fine on my machine but when it is installed on some other machine it gives the error Loading report failed because i am loading my reports dynamically through code and i have specified the address of local machine(i.e. d drive).Tell me how te get the path of report file so that i dont have to specify the path manually. Thanx. GIRISH
-
ATL server debuggin problem in asp.netI have created one website on .net 2005 On Local system.now i want to host my website on IIS seever.Wt i tried is i created one virtual directory and Copied al files to that directory then it gives the error page can't be displayed.Then i created new website on IIS and added those files to the website but while executing the website it gives me message unable to start debugging on the server "See ATL server debugging topic". Wt could be the reason?? GIRISH
-
Unable to send Email in asp.netHi,thanks for ur reply, this is my code, SmtpClient c = new SmtpClient("198.168.1.77"); MailMessage message = new MailMessage("shuklagirish@hotmail.com", "girish.javanet@gmail.com", "test", "Hello!!Test message from asp.net"); c.Send(message); Yes i am having proxy server internet and this ip address is of local machine so should i specify ip of Proxy server and also in the smtpserver of local machine whcih ip should i specify???
-
Unable to send Email in asp.netHi, I am not able to send Email in asp.net,my code is running properly there are no errors or exceptions but my email is getting stored at "C:\Inetpub\mailroot\Queue" folder.Wt could be the problem. Pls suggest. GIRISH
-
Operation Was cancelled Errorthanks for ur reply i will try and let u know.
-
Operation Was cancelled Errori am having my project in vb6.0,i have binded my controls at design time with Maindata(RecordSet). Now i am binding DataCombo control at runtime(with new RECORDSET),when i am writing this code i am getting error in other events when my maindata(recordset)is getting updated.error is "Operation was cancelled" wt clould be the reason??????? This is the code, Set PartyData = New ADODB.Recordset PartyData.CursorLocation = adUseClient If PartyData.state = adStateOpen Then PartyData.Close PartyData.Open "select StkSuppliersMaster.name from StkSuppliersMaster join purinqparty on StkSuppliersMaster.code=purinqparty.suppliercode where purinqparty.mastid=(select id from purinqmaster where inqno=" & txtInqNo.Text & ")", db, adOpenStatic, adLockPessimistic Set dbcParty.RowSource = PartyData above code works fine if i write, PartyData.Open "SELECT * FROM StkSuppliersMaster order by Name", db, adOpenStatic, adLockPessimistic GIRISH
-
Joining Three TablesThanx for ur reply, if possible just see this query and tell me wt is wrong in this, select PurPRMaster.*,StkItemMaster.Name as IName,StkItemMaster.Unit,PurPRTrans.* FROM PurPRMaster inner join purOrderMaster on PurPrmaster.prno=PurOrderMaster.prno inner join purprtrans on purmaster.id=purtrans.mastid inner join StkItemMaster on StkItemMaster.Code=PurPRTrans.ItemCode It is doing cross multiplication. wt could be the reason. Thanks in advance. GIRISH