Hi Navin I guess you know the requirements best ! So create it accordngly If you just want a simple newsletter function..I suggest ... 1) create a webpage 2) for newsletter body, place a HTML editor in the page (e.g. fckeditor see fckeditor.net) 3) add controls/textboxes for collecting from, to, and subject fields and do the programming ... Hope this Helps Arvind
Arvind B
Posts
-
coding newsletter for an application -
How to execute a javascript after a post back event occured??Hi Place below code after post back event handler If Not IsClientScriptBlockRegistered("anyNameToIdentify") Then RegisterClientScriptBlock("anyNameToIdentify", "alert('here ya go !')") .......... ..........
-
How to let two gridview side by side in one form?'------------------------------------------------ 'place a grid dgMaster 'inside a template col place grid dgChild 'u can design both grid at design time 'call below code after binding master grid 'u can also do this in itemcreated event '------------------------------------------------ '--declare a data grid object Dim dgchild As DataGrid '--suppose the master grid is dgmaster '--loop thro all items of a datagrid For i = 0 To dgMaster.Items.Count - 1 'find child grid dgChild = dgMaster.Items(i).FindControl("dgChild") 'bind this grid dgchild.DataSource = myDataSource dgchild.DataBind() Next Hope this helps Arvind B
-
Security Exceptioni don't know the exact solution but you can try by adding identity impersonate="true" to u r web.config file also the access file must reside in application domain
-
Dynamic Crystal Reports>design report in report expert >give a name to u r report e.g. rptMain wtite code like this dim rDoc as new rptMain() '--now build a data table / data reader object '--i guess u r familiar with that '--the datatable must return same columns as defined in report at design time '--**this way u can bypass logininfo of sql server** Dim tb as datatable = myMethodOfPopulatingIt() rDoc.SetDataSource(tb) '--bind to cr viewer myCrViewer.ReportSource = rDoc hope this helps
-
Reload Image Control In The Most Efficient Way?U have to use javascript to animate images. if u fetch image urls fro db you can store them in a hidden variable i your form by some separator e.g. a.bmp,b.bmp,c.gif etc now use js to rotate them in a divison
-
Refresh Page ProblemHi naresh U can use hidden iframe on home page which should be a page on same domain and it should fetch data every n seconds by using javascript timer functions and changes portions of home page e.g. in iframe ... window.parent.document.getElementById("whatever").innerText=yourValue; hope this helps
-
Create Radio Button GroupU should ideally code in the itemCreated event of datagrid if u r adding / modifying controls at runtime.