2
Answers

How To Send Email through Store procedure in ASP.NET

anamika singh

anamika singh

14y
1.7k
1

hi, i want to send the password recovered from datatable to the requesty through email as u send through ur website.i dont know what to do for sending mails in ASP.Net through SP.pls. recommend some good article which contains basic concept for this or tell me how can i do this.
thanks in advance.
Answers (2)
0
Roberto Salemi

Roberto Salemi

NA 146 50.4k 9y
Resolved with this code:


<Grid VerticalAlignment="Top">
<Grid.RowDefinitions>
<RowDefinition Height="50" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<!-- Toolbar Command -->
<StackPanel Orientation="Horizontal" Margin="0,0,0,0" Visibility="Visible" Grid.Row="0">
[MY CONTENT]
</StackPanel>

<DataGrid Name="dgSample" Grid.Row="1">
<DataGrid.Columns>
...
</DataGrid.Columns>
        </DataGrid>
</Grid>
0
Sabyasachi Mishra

Sabyasachi Mishra

NA 2.4k 841.3k 9y
Add your datagrid inside ScrollViewerLike
 <ScrollViewer  VerticalScrollBarVisibility="Auto" Height="Auto">
        <DataGrid>
        </DataGrid>
</ScrollViewer >
Avoid uses of Margin and heights if you are using scrollviewer
Next Recommended Forum